Rudiments
|
Static Public Member Functions | |
static char * | getOperatingSystemName () |
static char * | getOperatingSystemRelease () |
static char * | getOperatingSystemVersion () |
static char * | getOperatingSystemArchitecture () |
static char * | getHostName () |
static bool | setHostName (const char *hostname) |
static bool | setHostName (const char *hostname, uint64_t hostnamelen) |
static bool | getLoadAverages (double *oneminuteaverage, double *fiveminuteaverage, double *fifteenminuteaverage) |
static void | sync () |
static bool | halt () |
static bool | shutDown () |
static bool | reboot () |
static int64_t | getMaxCommandLineArgumentLength () |
static int64_t | getMaxProcessesPerUser () |
static int64_t | getMaxHostNameLength () |
static int64_t | getMaxLoginNameLength () |
static int64_t | getClockTicksPerSecond () |
static int64_t | getMaxOpenFilesPerProcess () |
static int32_t | getPageSize () |
static int32_t | getAllocationGranularity () |
static int64_t | getMaxOpenStreamsPerProcess () |
static int64_t | getMaxSymlinkLoops () |
static int64_t | getMaxTerminalDeviceNameLength () |
static int64_t | getMaxTimezoneNameLength () |
static int64_t | getMaxLineLength () |
static int64_t | getPhysicalPageCount () |
static int64_t | getAvailablePhysicalPageCount () |
static int64_t | getProcessorCount () |
static int64_t | getMaxProcessorCount () |
static int64_t | getProcessorsOnline () |
static int64_t | getMaxSupplementalGroupsPerUser () |
static int64_t | getMaxDelayTimerExpirations () |
static int64_t | getMaxRealtimeSignals () |
static int64_t | getMaxSemaphoresPerProcess () |
static int64_t | getMaxSemaphoreValue () |
static int64_t | getMaxSignalQueueLength () |
static int64_t | getMaxTimersPerProcess () |
static int64_t | getSuggestedGroupEntryBufferSize () |
static int64_t | getSuggestedPasswordEntryBufferSize () |
static int64_t | getMinThreadStackSize () |
static int64_t | getMaxThreadsPerProcess () |
static int64_t | getThreadDestructorIterations () |
static int64_t | getMaxThreadKeys () |
static int64_t | getMaxAtExitFunctions () |
static int64_t | getCpuSetSize () |
static int64_t | getMaxPasswordLength () |
static int64_t | getMaxLogNameLength () |
static int64_t | getMaxProcessId () |
static int64_t | sysConf (int32_t name) |
static bool | signalsInterruptSystemCalls () |
static char | getDirectorySeparator () |
The sys class provides methods for controlling the state of and accessing information about the operating system.
|
static |
Returns the allocation granularity, in bytes. Allocation granularity is the minimum number of bytes that a program's address space can be extended by. It's usually the same as the page size, but not on Windows, for example. Returns -1 if not supported by the system.
|
static |
Returns the number of pages of physical memory that are available. Returns -1 if not supported by the system.
|
static |
Returns the number of clock ticks per second - in particular, the number of times per second that the kernel interrupts the CPU(s) to perform process accounting and other tasks. Some kernels are "tickless" though, and the kernel is only interrupted on-demand. This method returns whatever the kernel reports, though some kernels report a value, whether it is valid or not. Returns -1 if not supported by the system.
|
static |
Returns the number of CPU's that can be bound together in a single CPU Set. Returns -1 if not supported by the system.
|
static |
Returns the character used to separate directories in a path.
|
static |
Returns the host name of the machine that the program is running on, as understood by the kernel. This may or may not necessarily be the name the machine is known by on the network.
|
static |
Sets the parameters to the load averages from the past one, five and fifteen minutes. Returns true on success and false on failure.
|
static |
Returns the maximum number of functions that can be registered to run when the process exits. Returns -1 if not supported by the system.
|
static |
Returns the maximum length of each command line argument. Returns -1 if not supported by the system.
|
static |
Returns the maximum number of delay timer expiration overruns. Returns -1 if not supported by the system.
|
static |
Returns the maximum length allowed for the host name, not including the null terminator. Returns -1 if not supported by the system.
|
static |
Returns the maximum length of a utility's input line length, either from standard input or from a file, including the trailing newline. Returns -1 if not supported by the system.
|
static |
Returns the maximum length allowed for a login name, not including the null terminator. Returns -1 if not supported by the system.
|
static |
Returns the maximum length that a password can be. Returns -1 if not supported by the system.
|
static |
Returns the maximum number of files that a single process can have open simultaneously. Returns -1 if not supported by the system.
|
static |
Returns the maximum number of streams that a single process can have open simultaneously. Returns -1 if not supported by the system.
|
static |
Returns the maximum length that a password can be. Returns -1 if not supported by the system.
|
static |
Returns the maximum number of processes that may run concurrently by each user. Returns -1 if not supported by the system.
|
static |
Returns the maximum length that a login name can be. Returns -1 if not supported by the system.
|
static |
Returns the maximum number of processors the system can possibly be configured to support. Returns -1 if not supported by the system.
|
static |
Returns the maximum number of realtime signals that are reserved for application use. Returns -1 if not supported by the system.
|
static |
Returns the maximum number of semaphores that a single process can have open simultaneously. Returns -1 if not supported by the system.
|
static |
Returns the maximum value that a semaphore can have. Returns -1 if not supported by the system.
|
static |
Returns the maximum number of signals that a single process can have pending at once. Returns -1 if not supported by the system.
|
static |
Returns the maximum number of groups that a user can be a member of, aside from its primary group. Returns -1 if not supported by the system.
|
static |
Returns the maximum number of symlinks that a pathname can resolve to before resolution returns ELOOP. This is useful for detecting symlink loops.
For instance, this value is used by cat in the following example:
$ ln -s file otherfile $ ln -s otherfile file $ cat file cat: file: Too many levels of symbolic links
Returns -1 if not supported by the system.
|
static |
Returns the maximum length of a terminal device name, including the null terminator. Returns -1 if not supported by the system.
|
static |
Returns the maximum number of keys per process. Returns -1 if not supported by the system.
|
static |
Returns the maximum number of threads that a single process can have open simultaneously. Returns -1 if not supported by the system.
|
static |
Returns the maximum number of timers that a single process can have running at once. Returns -1 if not supported by the system.
|
static |
Returns the maximum length of a timezone name. Returns -1 if not supported by the system.
|
static |
Returns the minimum size of the stack for each thread. Returns -1 if not supported by the system.
|
static |
Returns the hardware architecture of the environment that the program is running in. i386, x86_64, ppc, etc.
|
static |
Returns the name of the operating system. Linux, FreeBSD, Windows, Cygwin, etc.
|
static |
Returns a string representing the operating system release. Exactly what is returned varies significantly between operating systems.
|
static |
Returns a string representing the operating system version. Exactly what is returned varies significantly between operating systems.
|
static |
Returns the page size, in bytes. NOTE: If you're looking for the minimum number of bytes that a programs address space can be extended by, see getAllocationGranularity() instead. On most platforms it's the same as the page size, but it's different on Windows, for example, Returns -1 if not supported by the system.
|
static |
Returns the number of pages of physical memory, not including swap. Returns -1 if not supported by the system.
|
static |
Returns the number of processors the system is configured to support. Returns -1 if not supported by the system.
|
static |
Returns the number of processors that are currently online. Returns -1 if not supported by the system.
|
static |
Returns a recommended buffer size for use by the getgrnam_r and getgrgid_r functions. This is used internally in the groupentry class if the system supports those functions. Returns -1 if not supported by the system.
|
static |
Returns a recommended buffer size for use by the getpwnam_r and getpwgid_r functions. This is used internally in the userentry class if the system supports those functions. Returns -1 if not supported by the system.
|
static |
Returns the number of tries that will be made to destroy thraed-specific data on thread exit. Returns -1 if not supported by the system.
|
static |
Halts the operating system. The behavior of this command may vary between operating systems but it generally just halts the kernel without attempting to shut processes down gracefully or commit pending writes to storage.
|
static |
Shuts down and restarts the machine. The behavior of this command may vary between operating systems. Particularly, many operating sytems execute a graceful shutdown before the restart, while others do not.
|
static |
Sets the host name of the machine, as understood by the kernel.
|
static |
Sets the host name of the machine, as understood by the kernel.
|
static |
Shuts down the the machine. The behavior of this command may vary between operating systems but it generally attempts to shut processes down gracefully, commits pending writes to storage, halts the kernel and powers down the physical hardware.
|
static |
Returns true if signals interrupt system calls on this platform and false if signals do not interrupt system calls.
|
static |
Causes all pending writes to be committed to storage.
|
static |
Use the sysconf() system call directly to access values other than the ones provided above.