|
KTRPOINT(9) -- process tracing kernel interface
|
This interface is meant for kernel subsystems and machine dependent code to inform the user about the events occurring to the process should tracing of such be enabled using the ktrace(2) system call.... |
ktrpsig(9) -- process tracing kernel interface
|
This interface is meant for kernel subsystems and machine dependent code to inform the user about the events occurring to the process should tracing of such be enabled using the ktrace(2) system call.... |
|
ktrsyscall(9) -- process tracing kernel interface
|
This interface is meant for kernel subsystems and machine dependent code to inform the user about the events occurring to the process should tracing of such be enabled using the ktrace(2) system call.... |
ktrsysret(9) -- process tracing kernel interface
|
This interface is meant for kernel subsystems and machine dependent code to inform the user about the events occurring to the process should tracing of such be enabled using the ktrace(2) system call.... |
lmax(9) -- kernel library routines
|
The kern library implements a set of useful functions and macros inside the kernel. |
lmin(9) -- kernel library routines
|
The kern library implements a set of useful functions and macros inside the kernel. |
locc(9) -- kernel library routines
|
The kern library implements a set of useful functions and macros inside the kernel. |
lock(9) -- kernel lock functions
|
The lock functions provide synchronisation in the kernel by preventing multiple processes from simultaneously executing critical sections of code accessing shared data. A number of different locks are... |
lockinit(9) -- kernel lock functions
|
The lock functions provide synchronisation in the kernel by preventing multiple processes from simultaneously executing critical sections of code accessing shared data. A number of different locks are... |
lockmgr(9) -- kernel lock functions
|
The lock functions provide synchronisation in the kernel by preventing multiple processes from simultaneously executing critical sections of code accessing shared data. A number of different locks are... |
lockmgr_printinfo(9) -- kernel lock functions
|
The lock functions provide synchronisation in the kernel by preventing multiple processes from simultaneously executing critical sections of code accessing shared data. A number of different locks are... |
lockstatus(9) -- kernel lock functions
|
The lock functions provide synchronisation in the kernel by preventing multiple processes from simultaneously executing critical sections of code accessing shared data. A number of different locks are... |
log(9) -- log a message from the kernel through the /dev/klog device
|
The log() function allows the kernel to send formatted messages to user processes listening on /dev/klog. Usually syslogd(8) monitors /dev/klog for these messages and writes them to a log file. All me... |
lookup(9) -- pathname lookup
|
The namei interface is used to convert pathnames to file system vnodes. The name of the interface is actually a contraction of the words name and inode for name-to-inode conversion, in the days before... |
malloc(9) -- kernel memory allocator
|
The malloc() function allocates uninitialized memory in kernel address space for an object whose size is specified by size. free() releases memory at address addr that was previously allocated by mall... |