File: proc.h

package info (click to toggle)
freebsd-glue 0.2.20
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, jessie-kfreebsd-proposed-updates
  • size: 552 kB
  • sloc: ansic: 3,225; makefile: 130; sh: 1
file content (29 lines) | stat: -rw-r--r-- 617 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include_next <sys/proc.h>

#ifndef _FREEBSD_SYS_PROC_H_
#define	_FREEBSD_SYS_PROC_H_

#ifdef __FreeBSD_kernel__
#include <sys/callout.h>
#include <sys/event.h>
#include <sys/condvar.h>
#include <sys/filedesc.h>
#include <sys/queue.h>
#include <sys/_lock.h>
#include <sys/lock_profile.h>
#include <sys/_mutex.h>
#include <sys/osd.h>
#include <sys/priority.h>
#include <sys/rtprio.h>
#include <sys/runq.h>
#include <sys/resource.h>
#include <sys/sigio.h>
#include <sys/signal.h>
#include <sys/signalvar.h>
#include <sys/time.h>
#include <sys/ucontext.h>
#include <sys/ucred.h>
#include <machine/proc.h>
#endif

#endif