#include <sys/cdefs.h>
#include "opt_posix.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/lock.h>
#include <sys/module.h>
#include <sys/mutex.h>
#include <sys/priv.h>
#include <sys/proc.h>
#include <sys/posix4.h>
#include <sys/syscallsubr.h>
#include <sys/sysctl.h>
#include <sys/sysent.h>
#include <sys/syslog.h>
#include <sys/sysproto.h>
Go to the source code of this file.
__FBSDID |
( |
"$BSDSUniX$" |
| ) |
|
MALLOC_DEFINE |
( |
M_P31B |
, |
|
|
"p1003.1b" |
, |
|
|
"Posix 1003.1B" |
|
|
) |
| |
static void p31binit |
( |
void * |
notused | ) |
|
|
static |
static int sched_attach |
( |
void |
| ) |
|
|
static |
int syscall_not_present |
( |
struct thread * |
td, |
|
|
const char * |
s, |
|
|
struct nosys_args * |
uap |
|
) |
| |
SYSINIT |
( |
p31b |
, |
|
|
SI_SUB_P1003_1B |
, |
|
|
SI_ORDER_FIRST |
, |
|
|
p31binit |
, |
|
|
NULL |
|
|
) |
| |