You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
304 B
14 lines
304 B
|
|
#ifndef _LINUX_CPU_ACCT_H
|
|
#define _LINUX_CPU_ACCT_H
|
|
|
|
#include <linux/cgroup.h>
|
|
#include <asm/cputime.h>
|
|
|
|
#ifdef CONFIG_CGROUP_CPUACCT
|
|
extern void cpuacct_charge(struct task_struct *, cputime_t cputime);
|
|
#else
|
|
static void inline cpuacct_charge(struct task_struct *p, cputime_t cputime) {}
|
|
#endif
|
|
|
|
#endif
|
|
|