aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/acct.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/acct.h')
-rw-r--r--include/linux/acct.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/acct.h b/include/linux/acct.h
index 19f70462b3be..9a66401073fc 100644
--- a/include/linux/acct.h
+++ b/include/linux/acct.h
@@ -16,6 +16,8 @@
16#define _LINUX_ACCT_H 16#define _LINUX_ACCT_H
17 17
18#include <linux/types.h> 18#include <linux/types.h>
19#include <linux/jiffies.h>
20
19#include <asm/param.h> 21#include <asm/param.h>
20#include <asm/byteorder.h> 22#include <asm/byteorder.h>
21 23
@@ -117,12 +119,15 @@ struct acct_v3
117#include <linux/config.h> 119#include <linux/config.h>
118 120
119#ifdef CONFIG_BSD_PROCESS_ACCT 121#ifdef CONFIG_BSD_PROCESS_ACCT
122struct vfsmount;
120struct super_block; 123struct super_block;
124extern void acct_auto_close_mnt(struct vfsmount *m);
121extern void acct_auto_close(struct super_block *sb); 125extern void acct_auto_close(struct super_block *sb);
122extern void acct_process(long exitcode); 126extern void acct_process(long exitcode);
123extern void acct_update_integrals(struct task_struct *tsk); 127extern void acct_update_integrals(struct task_struct *tsk);
124extern void acct_clear_integrals(struct task_struct *tsk); 128extern void acct_clear_integrals(struct task_struct *tsk);
125#else 129#else
130#define acct_auto_close_mnt(x) do { } while (0)
126#define acct_auto_close(x) do { } while (0) 131#define acct_auto_close(x) do { } while (0)
127#define acct_process(x) do { } while (0) 132#define acct_process(x) do { } while (0)
128#define acct_update_integrals(x) do { } while (0) 133#define acct_update_integrals(x) do { } while (0)