2006-07-14 09:24:40 +02:00
|
|
|
/* taskstats_kern.h - kernel header for per-task statistics interface
|
|
|
|
*
|
|
|
|
* Copyright (C) Shailabh Nagar, IBM Corp. 2006
|
|
|
|
* (C) Balbir Singh, IBM Corp. 2006
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_TASKSTATS_KERN_H
|
|
|
|
#define _LINUX_TASKSTATS_KERN_H
|
|
|
|
|
|
|
|
#include <linux/taskstats.h>
|
|
|
|
#include <linux/sched.h>
|
2006-07-14 09:24:46 +02:00
|
|
|
#include <net/genetlink.h>
|
2006-07-14 09:24:40 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_TASKSTATS
|
2006-12-07 05:33:20 +01:00
|
|
|
extern struct kmem_cache *taskstats_cache;
|
2006-07-14 09:24:41 +02:00
|
|
|
extern struct mutex taskstats_exit_mutex;
|
2006-07-14 09:24:40 +02:00
|
|
|
|
2006-07-14 09:24:44 +02:00
|
|
|
static inline void taskstats_tgid_init(struct signal_struct *sig)
|
|
|
|
{
|
|
|
|
sig->stats = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void taskstats_tgid_free(struct signal_struct *sig)
|
|
|
|
{
|
2006-10-28 19:38:51 +02:00
|
|
|
if (sig->stats)
|
|
|
|
kmem_cache_free(taskstats_cache, sig->stats);
|
2006-07-14 09:24:44 +02:00
|
|
|
}
|
|
|
|
|
2006-12-07 05:36:51 +01:00
|
|
|
extern void taskstats_exit(struct task_struct *, int group_dead);
|
2006-07-14 09:24:44 +02:00
|
|
|
extern void taskstats_init_early(void);
|
2006-07-14 09:24:40 +02:00
|
|
|
#else
|
2006-12-07 05:36:51 +01:00
|
|
|
static inline void taskstats_exit(struct task_struct *tsk, int group_dead)
|
2006-07-14 09:24:44 +02:00
|
|
|
{}
|
|
|
|
static inline void taskstats_tgid_init(struct signal_struct *sig)
|
|
|
|
{}
|
|
|
|
static inline void taskstats_tgid_free(struct signal_struct *sig)
|
2006-07-14 09:24:40 +02:00
|
|
|
{}
|
|
|
|
static inline void taskstats_init_early(void)
|
|
|
|
{}
|
|
|
|
#endif /* CONFIG_TASKSTATS */
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|