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.
24 lines
455 B
24 lines
455 B
18 years ago
|
#ifndef _LINUX_PID_NS_H
|
||
|
#define _LINUX_PID_NS_H
|
||
19 years ago
|
|
||
|
#include <linux/sched.h>
|
||
|
#include <linux/mm.h>
|
||
|
#include <linux/threads.h>
|
||
|
#include <linux/pid.h>
|
||
|
|
||
|
struct pidmap {
|
||
|
atomic_t nr_free;
|
||
|
void *page;
|
||
|
};
|
||
|
|
||
|
#define PIDMAP_ENTRIES ((PID_MAX_LIMIT + 8*PAGE_SIZE - 1)/PAGE_SIZE/8)
|
||
|
|
||
18 years ago
|
struct pid_namespace {
|
||
19 years ago
|
struct pidmap pidmap[PIDMAP_ENTRIES];
|
||
|
int last_pid;
|
||
|
};
|
||
|
|
||
18 years ago
|
extern struct pid_namespace init_pid_ns;
|
||
19 years ago
|
|
||
18 years ago
|
#endif /* _LINUX_PID_NS_H */
|