|
afree(3) -- arena memory allocator
|
The amalloc family of routines provides a main memory allocator based on the malloc(3) memory allocator. This allocator has been extended so that an arbitrary memory space ("arena") can be set up as... |
aio_cancel(3) -- Cancels one or more asynchronous I/O requests pending against the specified file descriptor (P1003.1...
|
The aio_cancel function cancels asynchronous I/O requests. Normal signal delivery occurs for asynchronous I/O operations that are successfully canceled. If a request cannot be canceled, then the norma... |
aio_error(3) -- Returns the error status of a specified asynchronous I/O operation (P1003.1b)
|
The aio_error function returns the error status associated with the aiocb structure referenced by the aiocbp argument. The error status is the errno value that is set by the corresponding asynchronous... |
aio_group_completion_np(3) -- Enables the use of aio_results_np function
|
The aio_group_completion_np function enables an application to use aio group completion through the aio_results_np function. The function must be called before any other aio function. After this call,... |
aio_read(3) -- Queues a single asynchronous read request
|
The aio_read function allows the calling process to asynchronously read aiocbp->aio_nbytes from the file associated with aiocbp->aio_fildes into the buffer pointed to by aiocbp->aio_buf. The aio_read ... |
aio_results_np(3) -- Returns results for completed asynchronous I/O operations
|
The aio_results_np function suspends the calling process until at least howmany asynchronous I/O operations have completed, until a signal interrupts the function, or until a timeout interval, if spec... |
aio_return(3) -- Returns the status of an asynchronous I/O operation (P1003.1b)
|
The aio_return function returns the number of bytes read or written by the corresponding asynchronous I/O function. The return status for an asynchronous I/O operation is the value that would be retur... |
aio_suspend(3) -- Suspends the calling process until at least
|
The aio_suspend function suspends the calling process until at least one asynchronous I/O operation has completed, until a signal interrupts the function, or until a timeout interval, if specified, ha... |
aio_write(3) -- Queues a single asynchronous write request (P1003.1b)
|
The aio_write function allows the calling process to asynchronously write aiocbp->aio_nbytes to the file, raw disk partition, or connected socket associated with aiocbp->aio_fildes from the buffer poi... |
alarm(3) -- Sets or changes the timeout of interval timers.
|
The alarm() function is used to obtain notification of a timeout after the number of real-time seconds specified by the seconds parameter has elapsed. At some time after seconds seconds have elapsed, ... |
alloca(3) -- Provide a memory allocator
|
The malloc() and free() functions provide a simple, general-purpose memory allocation package. Note See also the subsection "Using the densemalloc Library" for information on using libdensemalloc to... |
alphasort(3) -- Scan or sorts directory contents
|
The scandir() function reads the directory pointed to by the dir_name parameter. It then uses the malloc() function to create an array of pointers to directory entries. The scandir() function returns ... |
amallinfo(3) -- arena memory allocator
|
The amalloc family of routines provides a main memory allocator based on the malloc(3) memory allocator. This allocator has been extended so that an arbitrary memory space ("arena") can be set up as... |