Abstraction layer over FreeBSD-specific APIs.
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer, | public, | parameter | :: | FREEBSD_VMSTAT_PROCS_R | = | 1 |
Threads running. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_PROCS_B | = | 2 |
Threads blocked. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_PROCS_W | = | 3 |
Threads swapped. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_MEMORY_AVM | = | 4 |
Virtual memory [byte]. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_MEMORY_FRE | = | 5 |
Free memory [byte]. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_PAGE_FLT | = | 6 |
Page faults. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_PAGE_RE | = | 7 |
Pages reactivated. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_PAGE_PI | = | 8 |
Pages paged in. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_PAGE_PO | = | 9 |
Pages paged out |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_PAGE_FR | = | 10 |
Pages freed. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_PAGE_SR | = | 11 |
Pages scanned. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_FAULTS_IN | = | 12 |
Device interrupts. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_FAULTS_SY | = | 13 |
System calls. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_FAULTS_CS | = | 14 |
Context switches. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_CPU_US | = | 15 |
User time [%]. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_CPU_SY | = | 16 |
System time [%]. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_CPU_ID | = | 17 |
Idle time [%]. |
integer, | public, | parameter | :: | FREEBSD_VMSTAT_LAST | = | 17 |
Never use this. |
integer, | public, | parameter | :: | FREEBSD_NVMSTAT | = | 17 |
Size of vmstat array. |
Returns free disk space of file or directory. Argument path
must
be a file or directory, for example, /
or .
. For security
reasons, path
must not be a file system or ZFS pool. The function
calls df(1) internally and expects sizes in 512K blocks.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | path |
File or directory. |
||
character(len=*), | intent(inout), | optional | :: | file_system |
File system path (device, ZFS pool). |
|
integer(kind=i8), | intent(out), | optional | :: | size |
Size [byte]. |
|
integer(kind=i8), | intent(out), | optional | :: | used |
Used space [byte]. |
|
integer(kind=i8), | intent(out), | optional | :: | available |
Available space [byte] |
|
integer, | intent(out), | optional | :: | capacity |
Capacity [%] |
|
character(len=*), | intent(inout), | optional | :: | mounted_on |
Mount point. |
Returns the current battery life [%] from sysctl(8).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(out) | :: | life |
Battery life [%]. |
Returns number of CPU cores from sysctl(8) (hw.ncpu
).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(out) | :: | ncore |
Number of CPUs. |
Returns model name of first CPU from sysctl(8) (hw.model
).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(inout) | :: | model |
Hardware model. |
Reads temperature of first CPU in °C from sysctl(8)
(dev.cpu.0.temperature
).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real, | intent(out) | :: | temperature |
Temperature [°C] |
Returns physical, real, and user memory [byte] from sysctl(8).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=i8), | intent(out), | optional | :: | phys_mem |
Physical memory [byte]. |
|
integer(kind=i8), | intent(out), | optional | :: | real_mem |
Real memory [byte]. |
|
integer(kind=i8), | intent(out), | optional | :: | user_mem |
User memory [byte]. |
Returns POSIX message queue variables from sysctl(8).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(out), | optional | :: | max_mqueues |
Max. number of mqueues. |
|
integer, | intent(out), | optional | :: | max_messages |
Max. number of messages. |
|
integer, | intent(out), | optional | :: | max_message_size |
Max. message size [byte]. |
Returns load averages from uptime(1).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real, | intent(out), | optional | :: | avg1 |
Average, 1 min. |
|
real, | intent(out), | optional | :: | avg5 |
Average, 5 min. |
|
real, | intent(out), | optional | :: | avg15 |
Average, 15 min. |
Returns output of vmstat(8). The procedure runs for > 0.1 seconds! Executes the following command and reads the last output values:
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=i8), | intent(out) | :: | vmstat(FREEBSD_NVMSTAT) |
Values. |
Returns CPU idle time from vmstat(8). The procedure runs for > 0.1 sec!
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(out) | :: | idle |
Idle time [%]. |