From 50f64c60b87e8d03fedc3f9f4e655aff8ca9f16c Mon Sep 17 00:00:00 2001 From: Sverker Eriksson Date: Wed, 12 Dec 2018 19:32:24 +0100 Subject: Add empty 'since' attribute for old modules and functions --- lib/os_mon/doc/src/cpu_sup.xml | 14 +++++++------- lib/os_mon/doc/src/disksup.xml | 12 ++++++------ lib/os_mon/doc/src/memsup.xml | 24 ++++++++++++------------ lib/os_mon/doc/src/nteventlog.xml | 8 ++++---- lib/os_mon/doc/src/os_mon_mib.xml | 6 +++--- lib/os_mon/doc/src/os_sup.xml | 10 +++++----- 6 files changed, 37 insertions(+), 37 deletions(-) (limited to 'lib/os_mon/doc/src') diff --git a/lib/os_mon/doc/src/cpu_sup.xml b/lib/os_mon/doc/src/cpu_sup.xml index bada165a06..b7adb2bcd2 100644 --- a/lib/os_mon/doc/src/cpu_sup.xml +++ b/lib/os_mon/doc/src/cpu_sup.xml @@ -28,7 +28,7 @@ - cpu_sup + cpu_sup A CPU Load and CPU Utilization Supervisor Process

cpu_sup is a process which supervises the CPU load @@ -76,7 +76,7 @@ - nprocs() -> UnixProcesses | {error, Reason} + nprocs() -> UnixProcesses | {error, Reason} Get the number of UNIX processes running on this host UnixProcesses = int() @@ -90,7 +90,7 @@ - avg1() -> SystemLoad | {error, Reason} + avg1() -> SystemLoad | {error, Reason} Get the system load average for the last minute SystemLoad = int() @@ -104,7 +104,7 @@ - avg5() -> SystemLoad | {error, Reason} + avg5() -> SystemLoad | {error, Reason} Get the system load average for the last five minutes SystemLoad = int() @@ -118,7 +118,7 @@ - avg15() -> SystemLoad | {error, Reason} + avg15() -> SystemLoad | {error, Reason} Get the system load average for the last fifteen minutes SystemLoad = int() @@ -132,7 +132,7 @@ - util() -> CpuUtil | {error, Reason} + util() -> CpuUtil | {error, Reason} Get the CPU utilization CpuUtil = float() @@ -156,7 +156,7 @@ - util(Opts) -> UtilSpec | {error, Reason} + util(Opts) -> UtilSpec | {error, Reason} Get the CPU utilization Opts = [detailed | per_cpu] diff --git a/lib/os_mon/doc/src/disksup.xml b/lib/os_mon/doc/src/disksup.xml index 610ef2c907..116a6dfd19 100644 --- a/lib/os_mon/doc/src/disksup.xml +++ b/lib/os_mon/doc/src/disksup.xml @@ -28,7 +28,7 @@ - disksup + disksup A Disk Supervisor Process

disksup is a process which supervises the available disk @@ -92,7 +92,7 @@ - get_disk_data() -> [DiskData] + get_disk_data() -> [DiskData] Get data for the disks in the system DiskData = {Id, KByte, Capacity} @@ -112,7 +112,7 @@ - get_check_interval() -> MS + get_check_interval() -> MS Get time interval, in milliseconds, for the periodic disk space check MS = int() @@ -123,7 +123,7 @@ - set_check_interval(Minutes) -> ok + set_check_interval(Minutes) -> ok Set time interval, in minutes, for the periodic disk space check Minutes = int()>=1 @@ -138,7 +138,7 @@ - get_almost_full_threshold() -> Percent + get_almost_full_threshold() -> Percent Get threshold, in percent, for disk space utilization Percent = int() @@ -148,7 +148,7 @@ - set_almost_full_threshold(Float) -> ok + set_almost_full_threshold(Float) -> ok Set threshold, as percentage represented by a float, for disk space utilization Float = float(), 0=<Float=<1 diff --git a/lib/os_mon/doc/src/memsup.xml b/lib/os_mon/doc/src/memsup.xml index c669e4670a..51c78b07c2 100644 --- a/lib/os_mon/doc/src/memsup.xml +++ b/lib/os_mon/doc/src/memsup.xml @@ -28,7 +28,7 @@ - memsup + memsup A Memory Supervisor Process

memsup is a process which supervises the memory usage for @@ -127,7 +127,7 @@ - get_memory_data() -> {Total,Allocated,Worst} + get_memory_data() -> {Total,Allocated,Worst} Get data for the memory in the system Total = Allocated = int() @@ -155,7 +155,7 @@ - get_system_memory_data() -> MemDataList + get_system_memory_data() -> MemDataList Get system dependent memory data MemDataList = [{Tag, Size}] @@ -216,7 +216,7 @@ - get_os_wordsize() -> Wordsize + get_os_wordsize() -> Wordsize Get the wordsize of running os. Wordsize = 32 | 64 | unsupported_os @@ -226,7 +226,7 @@ - get_check_interval() -> MS + get_check_interval() -> MS Get time interval, in milliseconds, for the periodic memory check MS = int() @@ -237,7 +237,7 @@ - set_check_interval(Minutes) -> ok + set_check_interval(Minutes) -> ok Set time interval, in minutes, for the periodic memory check Minutes = int()>0 @@ -252,7 +252,7 @@ - get_procmem_high_watermark() -> int() + get_procmem_high_watermark() -> int() Get threshold, in percent, for process memory allocation

Returns the threshold, in percent, for process memory @@ -260,7 +260,7 @@ - set_procmem_high_watermark(Float) -> ok + set_procmem_high_watermark(Float) -> ok Set threshold, as percentage represented by a float, for process memory allocation

Changes the threshold, given as a float, for process memory @@ -273,7 +273,7 @@ - get_sysmem_high_watermark() -> int() + get_sysmem_high_watermark() -> int() Get threshold, in percent, for system memory allocation

Returns the threshold, in percent, for system memory @@ -281,7 +281,7 @@ - set_sysmem_high_watermark(Float) -> ok + set_sysmem_high_watermark(Float) -> ok Set threshold, given as a float, for system memory allocation

Changes the threshold, given as a float, for system memory @@ -294,7 +294,7 @@ - get_helper_timeout() -> Seconds + get_helper_timeout() -> Seconds Get the timeout value, in seconds, for memory checks Seconds = int() @@ -304,7 +304,7 @@ - set_helper_timeout(Seconds) -> ok + set_helper_timeout(Seconds) -> ok Set the timeout value, in seconds, for memory checks Seconds = int() (>= 1) diff --git a/lib/os_mon/doc/src/nteventlog.xml b/lib/os_mon/doc/src/nteventlog.xml index d32427227c..08cf165a24 100644 --- a/lib/os_mon/doc/src/nteventlog.xml +++ b/lib/os_mon/doc/src/nteventlog.xml @@ -28,7 +28,7 @@ - nteventlog + nteventlog Interface to Windows Event Log

nteventlog provides a generic interface to the Windows @@ -61,8 +61,8 @@ - start(Identifier, MFA) -> Result - start_link(Identifier, MFA) -> Result + start(Identifier, MFA) -> Result + start_link(Identifier, MFA) -> Result Start the NT eventlog server Identifier = string() | atom() @@ -82,7 +82,7 @@ - stop() -> stopped + stop() -> stopped Stop the NT eventlog server Result = stopped diff --git a/lib/os_mon/doc/src/os_mon_mib.xml b/lib/os_mon/doc/src/os_mon_mib.xml index e995bf3de1..f6d0b20094 100644 --- a/lib/os_mon/doc/src/os_mon_mib.xml +++ b/lib/os_mon/doc/src/os_mon_mib.xml @@ -29,7 +29,7 @@ - os_mon_mib + os_mon_mib Loading and Unloading of OTP-OS-MON-MIB

Functions for loading and unloading the OTP-OS-MON-MIB into/from @@ -42,7 +42,7 @@ - load(Agent) -> ok | {error, Reason} + load(Agent) -> ok | {error, Reason} Load the OTP-OS-MON-MIB Agent = pid() | atom() @@ -53,7 +53,7 @@ - unload(Agent) -> ok | {error, Reason} + unload(Agent) -> ok | {error, Reason} Unload the OTP-OS-MON-MIB Agent = pid() | atom() diff --git a/lib/os_mon/doc/src/os_sup.xml b/lib/os_mon/doc/src/os_sup.xml index d517f387b4..4a84165a6c 100644 --- a/lib/os_mon/doc/src/os_sup.xml +++ b/lib/os_mon/doc/src/os_sup.xml @@ -28,7 +28,7 @@ - os_sup + os_sup Interface to OS System Messages

os_sup is a process providing a message passing service @@ -159,8 +159,8 @@ - enable() -> ok | {error, Res} - enable(Dir, Conf) -> ok | {error, Error} + enable() -> ok | {error, Res} + enable(Dir, Conf) -> ok | {error, Error} Enable the service (Solaris only) Dir = Conf = Res = string() @@ -194,8 +194,8 @@ - disable() -> ok | {error, Res} - disable(Dir, Conf) -> ok | {error, Error} + disable() -> ok | {error, Res} + disable(Dir, Conf) -> ok | {error, Error} Disable the service (Solaris only) Dir = Conf = Res = string() -- cgit v1.2.3