acct.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  BSD Process Accounting for Linux - Definitions
  3.  *
  4.  *  Author: Marco van Wieringen (mvw@planets.elm.net)
  5.  *
  6.  *  This header file contains the definitions needed to implement
  7.  *  BSD-style process accounting. The kernel accounting code and all
  8.  *  user-level programs that try to do something useful with the
  9.  *  process accounting log must include this file.
  10.  *
  11.  *  Copyright (C) 1995 - 1997 Marco van Wieringen - ELM Consultancy B.V.
  12.  *
  13.  */
  14. #ifndef _LINUX_ACCT_H
  15. #define _LINUX_ACCT_H
  16. #include <linux/types.h>
  17. /* 
  18.  *  comp_t is a 16-bit "floating" point number with a 3-bit base 8
  19.  *  exponent and a 13-bit fraction. See linux/kernel/acct.c for the
  20.  *  specific encoding system used.
  21.  */
  22. typedef __u16 comp_t;
  23. /*
  24.  *   accounting file record
  25.  *
  26.  *   This structure contains all of the information written out to the
  27.  *   process accounting file whenever a process exits.
  28.  */
  29. #define ACCT_COMM 16
  30. struct acct
  31. {
  32. char ac_flag; /* Accounting Flags */
  33. /*
  34.  * No binary format break with 2.0 - but when we hit 32bit uid we'll
  35.  * have to bite one
  36.  */
  37. __u16 ac_uid; /* Accounting Real User ID */
  38. __u16 ac_gid; /* Accounting Real Group ID */
  39. __u16 ac_tty; /* Accounting Control Terminal */
  40. __u32 ac_btime; /* Accounting Process Creation Time */
  41. comp_t ac_utime; /* Accounting User Time */
  42. comp_t ac_stime; /* Accounting System Time */
  43. comp_t ac_etime; /* Accounting Elapsed Time */
  44. comp_t ac_mem; /* Accounting Average Memory Usage */
  45. comp_t ac_io; /* Accounting Chars Transferred */
  46. comp_t ac_rw; /* Accounting Blocks Read or Written */
  47. comp_t ac_minflt; /* Accounting Minor Pagefaults */
  48. comp_t ac_majflt; /* Accounting Major Pagefaults */
  49. comp_t ac_swaps; /* Accounting Number of Swaps */
  50. __u32 ac_exitcode; /* Accounting Exitcode */
  51. char ac_comm[ACCT_COMM + 1]; /* Accounting Command Name */
  52. char ac_pad[10]; /* Accounting Padding Bytes */
  53. };
  54. /*
  55.  *  accounting flags
  56.  */
  57. /* bit set when the process ... */
  58. #define AFORK 0x01 /* ... executed fork, but did not exec */
  59. #define ASU 0x02 /* ... used super-user privileges */
  60. #define ACOMPAT 0x04 /* ... used compatibility mode (VAX only not used) */
  61. #define ACORE 0x08 /* ... dumped core */
  62. #define AXSIG 0x10 /* ... was killed by a signal */
  63. #define AHZ 100
  64. #ifdef __KERNEL__
  65. #include <linux/config.h>
  66. #ifdef CONFIG_BSD_PROCESS_ACCT
  67. extern void acct_auto_close(kdev_t dev);
  68. extern int acct_process(long exitcode);
  69. #else
  70. #define acct_auto_close(x) do { } while (0)
  71. #define acct_process(x) do { } while (0)
  72. #endif
  73. #endif /* __KERNEL */
  74. #endif /* _LINUX_ACCT_H */