getpagesize()
Get the current page size (Legacy Unix)
Synopsis:
#include <unistd.h> int getpagesize(void);
Library:
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
Description:
The getpagesize() function gets the current page size. It's equivalent to:
sysconf(_SC_PAGESIZE)
Returns:
The current page size.
Classification:
| Safety: | |
|---|---|
| Cancellation point | No |
| Interrupt handler | No |
| Signal handler | Yes |
| Thread | Yes |