Module Caml.Sys
val argv : string arrayThe command line arguments given to the process. The first element is the command name used to invoke the program. The following elements are the command-line arguments given to the program.
val executable_name : stringThe name of the file containing the executable currently running. This name may be absolute or relative to the current directory, depending on the platform and whether the program was compiled to bytecode or a native executable.
val is_directory : string -> boolReturns
trueif the given name refers to a directory,falseif it refers to another kind of file. RaiseSys_errorif no file exists with the given name.- since
 - 3.10.0
 
val rename : string -> string -> unitRename a file.
rename oldpath newpathrenames the file calledoldpath, giving itnewpathas its new name, moving it between directories if needed. Ifnewpathalready exists, its contents will be replaced with those ofoldpath. Depending on the operating system, the metadata (permissions, owner, etc) ofnewpathcan either be preserved or be replaced by those ofoldpath.- since
 - 4.06 concerning the "replace existing file" behavior
 
val getenv : string -> stringReturn the value associated to a variable in the process environment. Raise
Not_foundif the variable is unbound.
val getenv_opt : string -> string optionReturn the value associated to a variable in the process environment or
Noneif the variable is unbound.- since
 - 4.05
 
val time : unit -> floatReturn the processor time, in seconds, used by the program since the beginning of execution.
val readdir : string -> string arrayReturn the names of all files present in the given directory. Names denoting the current directory and the parent directory (
"."and".."in Unix) are not returned. Each string in the result is a file name rather than a complete path. There is no guarantee that the name strings in the resulting array will appear in any specific order; they are not, in particular, guaranteed to appear in alphabetical order.
val interactive : bool Stdlib.refThis reference is initially set to
falsein standalone programs and totrueif the code is being executed under the interactive toplevel systemocaml.
val os_type : stringOperating system currently executing the OCaml program. One of
"Unix"(for all Unix versions, including Linux and Mac OS X),"Win32"(for MS-Windows, OCaml compiled with MSVC++ or Mingw),"Cygwin"(for MS-Windows, OCaml compiled with Cygwin).
type backend_type=|Native|Bytecode|Other of stringCurrently, the official distribution only supports
NativeandBytecode, but it can be other backends with alternative compilers, for example, javascript.- since
 - 4.04.0
 
val backend_type : backend_typeBackend type currently executing the OCaml program.
- since
 - 4.04.0
 
val word_size : intSize of one word on the machine currently executing the OCaml program, in bits: 32 or 64.
val int_size : intSize of
int, in bits. It is 31 (resp. 63) when using OCaml on a 32-bit (resp. 64-bit) platform. It may differ for other implementations, e.g. it can be 32 bits when compiling to JavaScript.- since
 - 4.03.0
 
val big_endian : boolWhether the machine currently executing the Caml program is big-endian.
- since
 - 4.00.0
 
val max_array_length : intMaximum length of a normal array (i.e. any array whose elements are not of type
float). The maximum length of afloat arrayismax_floatarray_lengthif OCaml was configured with--enable-flat-float-arrayandmax_array_lengthif configured with--disable-flat-float-array.
val max_floatarray_length : intMaximum length of a floatarray. This is also the maximum length of a
float arraywhen OCaml is configured with--enable-flat-float-array.
val runtime_variant : unit -> stringReturn the name of the runtime variant the program is running on. This is normally the argument given to
-runtime-variantat compile time, but for byte-code it can be changed after compilation.- since
 - 4.03.0
 
val runtime_parameters : unit -> stringReturn the value of the runtime parameters, in the same format as the contents of the
OCAMLRUNPARAMenvironment variable.- since
 - 4.03.0
 
Signal handling
type signal_behavior=|Signal_default|Signal_ignore|Signal_handle of int -> unitWhat to do when receiving a signal:
Signal_default: take the default behavior (usually: abort the program)Signal_ignore: ignore the signalSignal_handle f: call functionf, giving it the signal number as argument.
val signal : int -> signal_behavior -> signal_behaviorSet the behavior of the system on receipt of a given signal. The first argument is the signal number. Return the behavior previously associated with the signal. If the signal number is invalid (or not available on your system), an
Invalid_argumentexception is raised.
val set_signal : int -> signal_behavior -> unitSame as
Sys.signalbut return value is ignored.
Signal numbers for the standard POSIX signals.
exceptionBreakException raised on interactive interrupt if
Sys.catch_breakis on.
val catch_break : bool -> unitcatch_breakgoverns whether interactive interrupt (ctrl-C) terminates the program or raises theBreakexception. Callcatch_break trueto enable raisingBreak, andcatch_break falseto let the system terminate the program on user interrupt.
val ocaml_version : stringocaml_versionis the version of OCaml. It is a string of the form"major.minor[.patchlevel][+additional-info]", wheremajor,minor, andpatchlevelare integers, andadditional-infois an arbitrary string. The[.patchlevel]and[+additional-info]parts may be absent.
Optimization
val opaque_identity : 'a -> 'aFor the purposes of optimization,
opaque_identitybehaves like an unknown (and thus possibly side-effecting) function.At runtime,
opaque_identitydisappears altogether.A typical use of this function is to prevent pure computations from being optimized away in benchmarking loops. For example:
for _round = 1 to 100_000 do ignore (Sys.opaque_identity (my_pure_computation ())) done- since
 - 4.03.0