|
socketpair(2) -- Create a pair of connected sockets
|
The socketpair() function creates an unnamed pair of connected sockets in a specified domain, of a specified type, under the protocol optionally specified by the protocol parameter. The two sockets ar... |
stat(2) -- Provide information about a file
|
The stat() function obtains information about the file named by the path parameter. Read, write, or execute permission for the named file is not required, but all directories listed in the pathname le... |
statfs(2) -- Get file system statistics
|
The statfs() and fstatfs() functions return information about a mounted file system. The returned information is in the format of the statfs structure that is declared in the file. When... |
statvfs(2) -- Get file system information
|
The statvfs() and fstatvfs() functions return descriptive information about a mounted file system. The returned information is in the format of a statvfs structure, which is defined in the |
strmod_add(2) -- Add STREAMS modules and drivers
|
The strmod_add() interface is used to configure STREAMS modules and drivers into the kernel. Specifically, the function allows STREAMS drivers to add entry points in character device switch tables. Mo... |
strmod_del(2) -- Delete STREAMS modules and drivers
|
The strmod_del() interface is used to remove configured STREAMS modules and drivers from the kernel. Specifically, it allows STREAMS drivers to remove entry points in character device switch tables. M... |
swapcontext(2) -- Manipulate user level context switching
|
The makecontext() function modifies the context specified by the ucp parameter. Before you call the makecontext() function, call the getcontext() function to initialize the ucp parameter. Before you c... |
swapctl(2) -- Manages the system swap space
|
The swapctl function manages the system swap space by adding, deleting, or returning information about swap resources. The cmd parameter that you select determines the value of the arg parameter. The ... |
swapon(2) -- Add a swap device for interleaved paging and swapping
|
The swapon() function makes a block special device available to the system for allocation of paging and swapping space. (The operating system does not currently support paging and swapping to a normal... |
symlink(2) -- Make a symbolic link to a file
|
The symlink() function creates a symbolic link with the name specified by the path2 parameter which refers to the file named by the path1 parameter. Like a hard link, which is described in link(2), a ... |
sync(2) -- Update all file systems
|
The sync() function causes all information in memory that should be on disk to be written out. The writing, although scheduled, is not necessarily complete upon return from the sync() function. Types ... |
sync2(2) -- Flush file system metadata and data from memory buffers to disk
|
The sync2() function causes file system data to be flushed (written) to disk. Which memory buffers are flushed to disk depends on the POLICY argument. If the policy is SYNC_SYNCPOLICY, all memory buff... |
syscall(2) -- indirect system call
|
The syscall system call performs the system call whose assembly language interface has the specified number, register arguments r0 and r1, and further arguments arg. The r0 value of the system call is... |