Module Stdlib.Sys
Contents
Instructions: Use this module in your project
In the IDE (CLion, Visual Studio Code, Xcode, etc.) you use for your DkSDK project:
Add the following to your project's
dependencies/CMakeLists.txt:DkSDKProject_DeclareAvailable(ocaml CONSTRAINT "= 4.14.0" FINDLIBS str unix runtime_events threads dynlink) DkSDKProject_MakeAvailable(ocaml)Add the
Findlib::ocamllibrary to any desired targets insrc/*/CMakeLists.txt:target_link_libraries(YourPackage_YourLibraryName # ... existing libraries, if any ... Findlib::ocaml)Click your IDE's
Buildbutton
Not using DkSDK?
FIRST, do one or all of the following:
Run:
opam install ocaml.4.14.0Edit your
dune-projectand add:(package (name YourExistingPackage) (depends ; ... existing dependenices ... (ocaml (>= 4.14.0))))Then run:
dune build *.opam # if this fails, run: dune buildEdit your
<package>.opamfile and add:depends: [ # ... existing dependencies ... "ocaml" {>= "4.14.0"} ]Then run:
opam install . --deps-only
FINALLY, add the library to any desired (library)and/or (executable) targets in your **/dune files:
(library
(name YourLibrary)
; ... existing library options ...
(libraries
; ... existing libraries ...
))
(executable
(name YourExecutable)
; ... existing executable options ...
(libraries
; ... existing libraries ...
))valargv : ``string array
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.
valexecutable_name : string
The 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.
valfile_exists : ``string->bool
Test if a file with the given name exists.
valis_directory : ``string->bool
Returns true if the given name refers to a directory, false if it
refers to another kind of file.
-
raises Sys_error
if no file exists with the given name.
-
since 3.10.0
valremove : ``string->unit
Remove the given file name from the file system.
valrename : ``string->``string->unit
Rename a file. rename oldpath newpath renames the file called
oldpath, giving it newpath as its new name, moving it between
directories if needed. If newpath already exists, its contents will be
replaced with those of oldpath. Depending on the operating system, the
metadata (permissions, owner, etc) of newpath can either be preserved
or be replaced by those of oldpath.
- since 4.06 concerning the "replace existing file" behavior
valgetenv : ``string->string
Return the value associated to a variable in the process environment.
-
raises Not_found
if the variable is unbound.
valgetenv_opt : ``string->``string option
Return the value associated to a variable in the process environment or
None if the variable is unbound.
- since 4.05
valcommand : ``string->int
Execute the given shell command and return its exit code.
The argument of Sys.command is generally the name of a
command followed by zero, one or several arguments, separated by
whitespace. The given argument is interpreted by a shell: either the
Windows shell cmd.exe for the Win32 ports of OCaml, or the POSIX shell
sh for other ports. It can contain shell builtin commands such as
echo, and also special characters such as file redirections > and
<, which will be honored by the shell.
Conversely, whitespace or special shell characters occurring in command
names or in their arguments must be quoted or escaped so that the shell
does not interpret them. The quoting rules vary between the POSIX shell
and the Windows shell. The
Filename.quote_command
performs the appropriate quoting given a command name, a list of
arguments, and optional file redirections.
valtime : ``unit->float
Return the processor time, in seconds, used by the program since the beginning of execution.
valchdir : ``string->unit
Change the current working directory of the process.
valmkdir : ``string->``int->unit
Create a directory with the given permissions.
- since 4.12.0
valrmdir : ``string->unit
Remove an empty directory.
- since 4.12.0
valgetcwd : ``unit->string
Return the current working directory of the process.
valreaddir : ``string->``string array
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.
valinteractive : ``boolref
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.
valos_type : string
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).
typebackend_type`` =
|Native
|Bytecode
|Otherofstring
Currently, the official distribution only supports Native and
Bytecode, but it can be other backends with alternative compilers, for
example, javascript.
- since 4.04.0
valbackend_type :backend_type
Backend type currently executing the OCaml program.
- since 4.04.0
valunix : bool
True if Sys.os_type = "Unix".
- since 4.01.0
valwin32 : bool
True if Sys.os_type = "Win32".
- since 4.01.0
valcygwin : bool
True if Sys.os_type = "Cygwin".
- since 4.01.0
valword_size : int
Size of one word on the machine currently executing the OCaml program, in bits: 32 or 64.
valint_size : int
Size 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
valbig_endian : bool
Whether the machine currently executing the Caml program is big-endian.
- since 4.00.0
valmax_string_length : int
Maximum length of strings and byte sequences.
valmax_array_length : int
Maximum length of a normal array (i.e. any array whose elements are not
of type float). The maximum length of a float array is
max_floatarray_length if OCaml was configured with
--enable-flat-float-array and max_array_length if configured with
--disable-flat-float-array.
valmax_floatarray_length : int
Maximum length of a floatarray. This is also the maximum length of a
float array when OCaml is configured with --enable-flat-float-array.
valruntime_variant : ``unit->string
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.
- since 4.03.0
valruntime_parameters : ``unit->string
Return the value of the runtime parameters, in the same format as the
contents of the OCAMLRUNPARAM environment variable.
- since 4.03.0
Signal handling
typesignal_behavior`` =
|Signal_default
|Signal_ignore
|Signal_handleof``int->unit
What 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.
valsignal : ``int->signal_behavior->signal_behavior
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. If the signal number is invalid (or not available on
your system), an Invalid_argument exception is raised.
valset_signal : ``int->signal_behavior->unit
Same as Sys.signal but return value is ignored.
\Signal numbers for the standard POSIX signals.
valsigabrt : int
Abnormal termination
valsigalrm : int
Timeout
valsigfpe : int
Arithmetic exception
valsighup : int
Hangup on controlling terminal
valsigill : int
Invalid hardware instruction
valsigint : int
Interactive interrupt (ctrl-C)
valsigkill : int
Termination (cannot be ignored)
valsigpipe : int
Broken pipe
valsigquit : int
Interactive termination
valsigsegv : int
Invalid memory reference
valsigterm : int
Termination
valsigusr1 : int
Application-defined signal 1
valsigusr2 : int
Application-defined signal 2
valsigchld : int
Child process terminated
valsigcont : int
Continue
valsigstop : int
Stop
valsigtstp : int
Interactive stop
valsigttin : int
Terminal read from background process
valsigttou : int
Terminal write from background process
valsigvtalrm : int
Timeout in virtual time
valsigprof : int
Profiling interrupt
valsigbus : int
Bus error
- since 4.03
valsigpoll : int
Pollable event
- since 4.03
valsigsys : int
Bad argument to routine
- since 4.03
valsigtrap : int
Trace/breakpoint trap
- since 4.03
valsigurg : int
Urgent condition on socket
- since 4.03
valsigxcpu : int
Timeout in cpu time
- since 4.03
valsigxfsz : int
File size limit exceeded
- since 4.03
exceptionBreak
Exception raised on interactive interrupt if
Sys.catch_break is on.
valcatch_break : ``bool->unit
catch_break governs whether interactive interrupt (ctrl-C) terminates
the program or raises the Break exception. Call catch_break true to
enable raising Break, and catch_break false to let the system
terminate the program on user interrupt.
valocaml_version : string
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] part was absent before version
3.08.0 and became mandatory from 3.08.0 onwards. The
[(+|~)additional-info] part may be absent.
valdevelopment_version : bool
true if this is a development version, false otherwise.
- since 4.14.0
typeextra_prefix`` =
|Plus
|Tilde
typeextra_info`` =extra_prefix* string
typeocaml_release_info`` = ``{
major : int;
minor : int;
patchlevel : int;
extra :extra_infooption``;}
valocaml_release :ocaml_release_info
valenable_runtime_warnings : ``bool->unit
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 disabled by default.
- since 4.03.0
valruntime_warnings_enabled : ``unit->bool
Return whether runtime warnings are currently enabled.
- since 4.03.0
Optimization
valopaque_identity :'a->'a
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- since 4.03.0
moduleImmediate64:sig...end
This module allows to define a type t with the immediate64
attribute. This attribute means that the type is immediate on 64 bit
architectures. On other architectures, it might or might not be
immediate.
