tsacct_kern.h 1.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * tsacct_kern.h - kernel header for system accounting over taskstats interface
 *
 * Copyright (C) Jay Lan	SGI
 */

#ifndef _LINUX_TSACCT_KERN_H
#define _LINUX_TSACCT_KERN_H

#include <linux/taskstats.h>

#ifdef CONFIG_TASKSTATS
13 14 15
extern void bacct_add_tsk(struct user_namespace *user_ns,
			  struct pid_namespace *pid_ns,
			  struct taskstats *stats, struct task_struct *tsk);
16
#else
17 18 19
static inline void bacct_add_tsk(struct user_namespace *user_ns,
				 struct pid_namespace *pid_ns,
				 struct taskstats *stats, struct task_struct *tsk)
20 21 22
{}
#endif /* CONFIG_TASKSTATS */

23 24
#ifdef CONFIG_TASK_XACCT
extern void xacct_add_tsk(struct taskstats *stats, struct task_struct *p);
25
extern void acct_update_integrals(struct task_struct *tsk);
26
extern void acct_account_cputime(struct task_struct *tsk);
27
extern void acct_clear_integrals(struct task_struct *tsk);
28 29 30
#else
static inline void xacct_add_tsk(struct taskstats *stats, struct task_struct *p)
{}
31 32
static inline void acct_update_integrals(struct task_struct *tsk)
{}
33 34
static inline void acct_account_cputime(struct task_struct *tsk)
{}
35 36
static inline void acct_clear_integrals(struct task_struct *tsk)
{}
37 38
#endif /* CONFIG_TASK_XACCT */

39
#endif
40 41