Commit a3b6714e authored by David Woodhouse's avatar David Woodhouse

Partially sanitise linux/sched.h for userspace consumption

For now, just make sure all inclusion of private header files is done
within #ifdef __KERNEL__. There'll be more to clean up later.
Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
parent 98ca79d5
#ifndef _LINUX_SCHED_H
#define _LINUX_SCHED_H
#ifdef __KERNEL__
#include <asm/param.h> /* for HZ */
#include <linux/config.h>
#include <linux/capability.h>
#include <linux/threads.h>
#include <linux/kernel.h>
......@@ -37,6 +37,15 @@
#include <linux/rcupdate.h>
#include <linux/futex.h>
#include <linux/time.h>
#include <linux/param.h>
#include <linux/resource.h>
#include <linux/timer.h>
#include <linux/hrtimer.h>
#include <asm/processor.h>
#endif
#include <linux/auxvec.h> /* For AT_VECTOR_SIZE */
struct exec_domain;
......@@ -103,13 +112,6 @@ extern unsigned long nr_uninterruptible(void);
extern unsigned long nr_active(void);
extern unsigned long nr_iowait(void);
#include <linux/time.h>
#include <linux/param.h>
#include <linux/resource.h>
#include <linux/timer.h>
#include <linux/hrtimer.h>
#include <asm/processor.h>
/*
* Task state bitmask. NOTE! These bits are also
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment