diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1998-08-08 16:53:42 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1998-08-08 16:53:42 +0000 |
commit | ee699eec484648ae7173941dcb52ce158dc9b9e7 (patch) | |
tree | 8a79c3ba0e20e79079a21a5a26b2de3acec71f0e /otherlibs/win32unix/unix.ml | |
parent | c6b82c5c30ba710e5bf55729f09f12a9356ddcd6 (diff) |
Ajout de sigprocmask, sigpending, sigsuspend
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2040 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/unix.ml')
-rw-r--r-- | otherlibs/win32unix/unix.ml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/otherlibs/win32unix/unix.ml b/otherlibs/win32unix/unix.ml index 6e54b09a2..9f53e7fb7 100644 --- a/otherlibs/win32unix/unix.ml +++ b/otherlibs/win32unix/unix.ml @@ -346,6 +346,10 @@ type lock_command = let lockf fd cmd exten = invalid_arg "Unix.lockf not implemented" let kill pid signo = invalid_arg "Unix.kill not implemented" +type sigprocmask_command = SIG_SETMASK | SIG_BLOCK | SIG_UNBLOCK +let sigprocmask cmd sigs = invalid_arg "Unix.sigprocmask not implemented" +let sigpending () = invalid_arg "Unix.sigpending not implemented" +let sigsuspend sigs = invalid_arg "Unix.sigsuspend not implemented" let pause () = invalid_arg "Unix.pause not implemented" (* Time functions *) |