File: unix.sig

package info (click to toggle)
mlton 20210117%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 58,464 kB
  • sloc: ansic: 27,682; sh: 4,455; asm: 3,569; lisp: 2,879; makefile: 2,347; perl: 1,169; python: 191; pascal: 68; javascript: 7
file content (23 lines) | stat: -rw-r--r-- 950 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
signature UNIX =
   sig
      type ('a, 'b) proc
      type signal
      datatype exit_status = 
         W_EXITED
       | W_EXITSTATUS of Word8.word
       | W_SIGNALED of signal
       | W_STOPPED of signal

      val binInstreamOf: (BinIO.instream, 'a) proc -> BinIO.instream
      val binOutstreamOf: ('a, BinIO.outstream) proc -> BinIO.outstream
      val execute: string * string list -> ('a, 'b) proc
      val executeInEnv: string * string list * string list -> ('a, 'b) proc 
      val exit: Word8.word -> 'a
      val fromStatus: OS.Process.status -> exit_status
      val kill: ('a, 'b) proc * signal -> unit
      val reap: ('a, 'b) proc -> OS.Process.status
      val streamsOf: ((TextIO.instream, TextIO.outstream) proc
                      -> TextIO.instream * TextIO.outstream)
      val textInstreamOf: (TextIO.instream, 'a) proc -> TextIO.instream
      val textOutstreamOf: ('a, TextIO.outstream) proc -> TextIO.outstream
   end