HOPS
HOPS class reference
account.h
Go to the documentation of this file.
1 /*
2  * $Id$
3  */
4 
5 #ifndef ACCOUNT_H
6 #define ACCOUNT_H
7 
8 #define MAX_PSEGS 50
9 #define NAME_LEN 31
10 #define TRUE 1
11 #define FALSE 0
12 
14  {
16  int namlen;
17  double real_time;
18  double user_time;
19  double system_time;
21  };
22 
23 #endif
24 
25 extern char *account(const char *segment_name);
26 
27 /*
28  * eof
29  */
int times_called
Definition: account.h:20
double system_time
Definition: account.h:19
char * account(const char *segment_name)
Definition: account.c:43
#define NAME_LEN
Definition: account.h:9
int namlen
Definition: account.h:16
char segment_name[NAME_LEN+1]
Definition: account.h:15
double user_time
Definition: account.h:18
double real_time
Definition: account.h:17
Definition: account.h:14