summaryrefslogtreecommitdiffstats
path: root/kernel/tests/include/lapi/acct.h
blob: c81b78b442b9e1ddad78918a89189f5e52ec14ba (plain) (blame)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
//SPDX-License-Identifier: GPL-2.0-or-later

#ifndef LAPI_ACCT_H
#define LAPI_ACCT_H

#include <sys/types.h>
#include "config.h"

#ifdef HAVE_STRUCT_ACCT_V3
#include <sys/acct.h>
#else

#define ACCT_COMM 16

typedef uint16_t comp_t;

/* Fallback structures to parse the process accounting file */
struct acct {
	char ac_flag;
	uint16_t ac_uid;
	uint16_t ac_gid;
	uint16_t ac_tty;
	uint32_t ac_btime;
	comp_t    ac_utime;
	comp_t    ac_stime;
	comp_t    ac_etime;
	comp_t    ac_mem;
	comp_t    ac_io;
	comp_t    ac_rw;
	comp_t    ac_minflt;
	comp_t    ac_majflt;
	comp_t    ac_swaps;
	uint32_t ac_exitcode;
	char      ac_comm[ACCT_COMM+1];
	char      ac_pad[10];
};

struct acct_v3 {
	char      ac_flag;
	char      ac_version;
	uint16_t ac_tty;
	uint32_t ac_exitcode;
	uint32_t ac_uid;
	uint32_t ac_gid;
	uint32_t ac_pid;
	uint32_t ac_ppid;
	uint32_t ac_btime;
	float     ac_etime;
	comp_t    ac_utime;
	comp_t    ac_stime;
	comp_t    ac_mem;
	comp_t    ac_io;
	comp_t    ac_rw;
	comp_t    ac_minflt;
	comp_t    ac_majflt;
	comp_t    ac_swaps;
	char      ac_comm[ACCT_COMM];
};

/* Possible values for the ac_flag member */
enum {
	AFORK = 0x01,
	ASU   = 0x02,
	ACORE = 0x08,
	AXSIG = 0x10
};
# if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
# define ACCT_BYTEORDER  0x80
# elif __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
# define ACCT_BYTEORDER  0x00
# endif
#endif /* HAVE_STRUCT_ACCT_V3 */

#endif /* LAPI_ACCT_H */