Lines Matching +full:real +full:- +full:time
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
3 * BSD Process Accounting for Linux - Definitions
8 * BSD-style process accounting. The kernel accounting code and all
9 * user-level programs that try to do something useful with the
12 * Copyright (C) 1995 - 1997 Marco van Wieringen - ELM Consultancy B.V.
25 * comp_t is a 16-bit "floating" point number with a 3-bit base 8
26 * exponent and a 13-bit fraction.
27 * comp2_t is 24-bit with 5-bit base 2 exponent and 20 bit fraction
49 __u16 ac_uid16; /* LSB of Real User ID */
50 __u16 ac_gid16; /* LSB of Real Group ID */
53 __u32 ac_btime; /* Process Creation Time */
54 comp_t ac_utime; /* User Time */
55 comp_t ac_stime; /* System Time */
56 comp_t ac_etime; /* Elapsed Time */
69 __u8 ac_etime_hi; /* Elapsed Time MSB */
70 __u16 ac_etime_lo; /* Elapsed Time LSB */
71 __u32 ac_uid; /* Real User ID */
72 __u32 ac_gid; /* Real Group ID */
81 __u32 ac_uid; /* Real User ID */
82 __u32 ac_gid; /* Real Group ID */
86 __u32 ac_btime; /* Process Creation Time */
88 __u32 ac_etime; /* Elapsed Time */
90 float ac_etime; /* Elapsed Time */
92 comp_t ac_utime; /* User Time */
93 comp_t ac_stime; /* System Time */
108 #define ASU 0x02 /* ... used super-user privileges */