Frama_c_kernel.CommandUseful high-level system operations.
val pp_from_file : Stdlib.Format.formatter -> Filepath.t -> unitpp_from_file fmt file dumps the content of file into the fmt. Exceptions in pp are re-raised after closing.
Compute the elapsed time with Sys.time. The rmax timer is maximized and the radd timer is cumulated. Computed result is returned, or exception is re-raised.
val async :
?stdout:Stdlib.Buffer.t ->
?stderr:Stdlib.Buffer.t ->
string ->
string list ->
unit ->
process_resultSame arguments as Unix.create_process.
val spawn :
?timeout:int ->
?stdout:Stdlib.Buffer.t ->
?stderr:Stdlib.Buffer.t ->
string ->
string list ->
Unix.process_statusSame arguments as Unix.create_process. When this function returns, the stdout and stderr of the child process will be filled into the arguments buffer.
module Dot : sig ... endSpecialized command for the Graphviz's dot program to process dot files.