package core_unix

  1. Overview
  2. Docs
Unix-specific portions of Core

Install

Dune Dependency

Authors

Maintainers

Sources

core_unix-v0.16.0.tar.gz
sha256=4f70a9d3a761799d00c0a207942b4abd9f1a144bbcb19df98021d9fb7bfa9e5f

doc/src/core_unix.command_unix/command_unix.ml.html

Source file command_unix.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
open! Core
module Path = Command.Private.Path

module For_unix = Command.Private.For_unix (struct
    module Pid = Pid
    module Signal = Signal
    module Thread = Core_thread

    module Unix = struct
      include Core_unix

      let unsafe_getenv = Sys_unix.unsafe_getenv
      let create_process_env = create_process_env ?setpgid:None
      let wait pid = ignore (wait (`Pid pid) : Pid.t * Exit_or_signal.t)
    end

    module Version_util = struct
      include Version_util
      module Time = Time_float_unix
    end
  end)

let run = For_unix.run
let shape = For_unix.shape

module Deprecated = struct
  let run = For_unix.deprecated_run
end

module Shape = struct
  let help_text = For_unix.help_for_shape
end
OCaml

Innovation. Community. Security.