public function dm_system_disk_free(path, file_system, size, used, available, capacity, mounted_on) result(rc)
proc~~dm_system_disk_free~~UsesGraph
proc~dm_system_disk_free
dm_system_disk_free
module~dm_freebsd
dm_freebsd
proc~dm_system_disk_free->module~dm_freebsd
module~dm_linux
dm_linux
proc~dm_system_disk_free->module~dm_linux
module~dm_error
dm_error
module~dm_freebsd->module~dm_error
module~dm_kind
dm_kind
module~dm_freebsd->module~dm_kind
module~dm_pipe
dm_pipe
module~dm_freebsd->module~dm_pipe
module~dm_platform
dm_platform
module~dm_freebsd->module~dm_platform
module~dm_linux->module~dm_error
module~dm_linux->module~dm_kind
module~dm_linux->module~dm_pipe
module~dm_linux->module~dm_platform
module~dm_error->module~dm_kind
module~dm_ascii
dm_ascii
module~dm_error->module~dm_ascii
iso_fortran_env
iso_fortran_env
module~dm_kind->iso_fortran_env
module~dm_pipe->module~dm_error
module~dm_pipe->module~dm_kind
unix
unix
module~dm_pipe->unix
Nodes of different colours represent the following:
Graph Key
Module
Module
Submodule
Submodule
Subroutine
Subroutine
Function
Function
Program
Program
This Page's Entity
This Page's Entity
Solid arrows point from a submodule to the (sub)module which it is
descended from. Dashed arrows point from a module or program unit to
modules which it uses.
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 (FreeBSD) or
1024K (Linux) blocks.
The function returns the following error codes:
E_FORMAT
if output format is unexpected.
E_NOT_FOUND
if path does not exist.
E_PLATFORM
if system type is unsupported.
E_READ
if pipe returned no bytes.
E_SYSTEM
if system call failed.
Arguments
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.
Return Value
integer
proc~~dm_system_disk_free~~CallsGraph
proc~dm_system_disk_free
dm_system_disk_free
proc~dm_freebsd_disk_free
dm_freebsd_disk_free
proc~dm_system_disk_free->proc~dm_freebsd_disk_free
proc~dm_linux_disk_free
dm_linux_disk_free
proc~dm_system_disk_free->proc~dm_linux_disk_free
output
output
proc~dm_freebsd_disk_free->output
proc~dm_file_exists
dm_file_exists
proc~dm_freebsd_disk_free->proc~dm_file_exists
proc~dm_is_error
dm_is_error
proc~dm_freebsd_disk_free->proc~dm_is_error
proc~dm_pipe_close
dm_pipe_close
proc~dm_freebsd_disk_free->proc~dm_pipe_close
proc~dm_pipe_open
dm_pipe_open
proc~dm_freebsd_disk_free->proc~dm_pipe_open
proc~dm_pipe_read_line
dm_pipe_read_line
proc~dm_freebsd_disk_free->proc~dm_pipe_read_line
proc~dm_linux_disk_free->output
proc~dm_linux_disk_free->proc~dm_file_exists
proc~dm_linux_disk_free->proc~dm_is_error
proc~dm_linux_disk_free->proc~dm_pipe_close
proc~dm_linux_disk_free->proc~dm_pipe_open
proc~dm_linux_disk_free->proc~dm_pipe_read_line
c_pclose
c_pclose
proc~dm_pipe_close->c_pclose
proc~dm_pipe_is_connected
dm_pipe_is_connected
proc~dm_pipe_close->proc~dm_pipe_is_connected
c_popen
c_popen
proc~dm_pipe_open->c_popen
proc~dm_f_c_string
dm_f_c_string
proc~dm_pipe_open->proc~dm_f_c_string
proc~dm_pipe_open->proc~dm_pipe_is_connected
c_fgets
c_fgets
proc~dm_pipe_read_line->c_fgets
proc~dm_pipe_read_line->proc~dm_pipe_is_connected
Nodes of different colours represent the following:
Graph Key
Subroutine
Subroutine
Function
Function
Interface
Interface
Type Bound Procedure
Type Bound Procedure
Unknown Procedure Type
Unknown Procedure Type
Program
Program
This Page's Entity
This Page's Entity
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.