Import Upstream version 20180207
[hcoop/debian/mlton.git] / lib / mlton / basic / ps.sig
CommitLineData
7f918cf1
CE
1(* Copyright (C) 1999-2005 Henry Cejtin, Matthew Fluet, Suresh
2 * Jagannathan, and Stephen Weeks.
3 *
4 * MLton is released under a BSD-style license.
5 * See the file MLton-LICENSE for details.
6 *)
7
8signature PS =
9 sig
10 structure State =
11 struct
12 datatype t =
13 Running | Sleeping
14 end
15
16 val ps: unit -> {pid: Pid.t,
17 commandName: string,
18 args: string list,
19 state: State.t} list
20 end