package batteries
Install
Dune Dependency
Authors
Maintainers
Sources
md5=ea26b5c72e6731e59d856626049cca4d
sha512=55975b62c26f6db77433a3ac31f97af609fc6789bb62ac38b267249c78fd44ff37fe81901f1cf560857b9493a6046dd37b0d1c0234c66bd59e52843aac3ce6cb
doc/batteries.unthreaded/BatSys/index.html
Module BatSys
Source
System interface.
This module defines higher-level functions than the Unix
module and should, wherever possible, be used rather than the Unix
module to ensure portability.
The 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.
The name of the file containing the executable currently running.
Test if a file with the given name exists.
Returns true
if the given name refers to a directory, false
if it refers to another kind of file.
Remove the given file name from the file system.
Rename a file. The first argument is the old name and the second is the new name. If there is already another file under the new name, rename
may replace it, or raise an exception, depending on your operating system.
Return the value associated to a variable in the process environment.
Return the value associated to a variable in the process environment or None
if the variable is unbound.
Execute the given shell command and return its exit code.
Return the processor time, in seconds, used by the program since the beginning of execution.
Change the current working directory of the process.
Return the current working directory of the process.
Return 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.
This reference is initially set to false
in standalone programs and to true
if the code is being executed under the interactive toplevel system ocaml
.
Operating 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).
Currently, the official distribution only supports Native
and Bytecode
, but it can be other backends with alternative compilers, for example, javascript.
Backend type currently executing the OCaml program.
True if Sys.os_type = "Unix"
.
True if Sys.os_type = "Win32"
.
True if Sys.os_type = "Cygwin"
.
Size of one word on the machine currently executing the OCaml program, in bits: 32 or 64.
Size of an int. It is 31 bits (resp. 63 bits) when using the OCaml compiler on a 32 bits (resp. 64 bits) platform. It may differ for other compilers, e.g. it is 32 bits when compiling to JavaScript.
Whether the machine currently executing the OCaml program is big-endian.
Maximum length of a string.
Maximum length of a normal array. The maximum length of a float array is max_array_length/2
on 32-bit machines and max_array_length
on 64-bit machines.
Maximum length of a floatarray. This is also the maximum length of a float array
when OCaml is configured with --enable-flat-float-array
.
Return the name of the runtime variant the program is running on. This is normally the argument given to -runtime-variant
at compile time, but for byte-code it can be changed after compilation.
Return the value of the runtime parameters, in the same format as the contents of the OCAMLRUNPARAM
environment variable.
Run any pending runtime actions, such as minor collections, major GC slices, signal handlers, finalizers, or memprof callbacks.
Signal handling
Set 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.
Same as Sys.signal
but return value is ignored.
Signal numbers for the standard POSIX signals.
Abnormal termination
Timeout
Arithmetic exception
Hangup on controlling terminal
Invalid hardware instruction
Interactive interrupt (ctrl-C)
Termination (cannot be ignored)
Broken pipe
Interactive termination
Invalid memory reference
Termination
Application-defined signal 1
Application-defined signal 2
Child process terminated
Continue
Stop
Interactive stop
Terminal read from background process
Terminal write from background process
Timeout in virtual time
Profiling interrupt
Bus error
Pollable event
Bad argument to routine
Trace/breakpoint trap
Urgent condition on socket
Timeout in cpu time
File size limit exceeded
Exception raised on interactive interrupt if Sys.catch_break
is on.
catch_break
governs whether interactive interrupt (ctrl-C) terminates the program or raises Break
. Call catch_break true
to enable raising Break
, and catch_break false
to let the system terminate the program on user interrupt.
ocaml_version
is the version of OCaml. It is a string of the form "major.minor[.patchlevel][+additional-info]"
, where major
, minor
, and patchlevel
are integers, and additional-info
is an arbitrary string. The [.patchlevel]
and [+additional-info]
parts may be absent.
true
if this is a development version, false
otherwise.
type ocaml_release_info = Sys.ocaml_release_info = {
major : int;
minor : int;
patchlevel : int;
extra : extra_info option;
}
As readdir
but the results are presented as an enumeration of names.
Control whether the OCaml runtime system can emit warnings on stderr. Currently, the only supported warning is triggered when a channel created by open_*
functions is finalized without being closed. Runtime warnings are enabled by default.
Return whether runtime warnings are currently enabled.
Optimization
For the purposes of optimization, opaque_identity
behaves like an unknown (and thus possibly side-effecting) function.
At runtime, opaque_identity
disappears 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
The compiler primitive was added to OCaml 4.03, but we emulate it under 4.02 using the -opaque compilation flag. There is no easy way for Batteries to emulate it correctly under older OCaml versions.
Create a directory with the given permissions.
Remove an empty directory.