1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
#ifndef __CPUUSAGE_H__
static char cpuusage_h_rcsid[]="cpuusage.h,v 1.1.1.1 1994/06/18 19:43:28 kerce Exp";
/*-----------------------------------------------------------------------------
* Kingsley Kerce
*
* Copyright (c) 1994
*
* Supercomputer Computations Research Institute (SCRI)
* Florida State University
*
* SCRI representatives make no claims about the suitability of this software
* for any purpose. It is provided "as is" without express or implied
* warranty.
*
* cpuusage.h,v
* Revision 1.1.1.1 1994/06/18 19:43:28 kerce
* DQS X Distribution
*
*---------------------------------------------------------------------------*/
#define __CPUUSAGE_H__ 1
#include <X11/Intrinsic.h>
#include "proto.h"
#include "stdstuff.h"
void
CPUUsagePrint PROTO((void *CPUUsagePlotWid, char *PlotPSFileName,
BOOLEAN Landscape));
#define CPUUSAGE_OUTOFMEM -1
long
CPUUsageBegin PROTO((Widget W, unsigned int Start, unsigned int Days,
unsigned int BinSize, char *AcctFileName,
char *QName, char *HostName, char *QComplexStr,
char *Group, char *Owner, char *JobName));
void
CPUUsageAddWorkProc PROTO((void));
void
CPUUsageRemoveWorkProc PROTO((void));
#endif /* __CPUUSAGE_H__ */
/* Set Emacs C-mode style.
Local Variables:
c-style: GNU
End:
*/
|