summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/pause.c
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1998-08-08 16:53:42 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1998-08-08 16:53:42 +0000
commitee699eec484648ae7173941dcb52ce158dc9b9e7 (patch)
tree8a79c3ba0e20e79079a21a5a26b2de3acec71f0e /otherlibs/unix/pause.c
parentc6b82c5c30ba710e5bf55729f09f12a9356ddcd6 (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/unix/pause.c')
-rw-r--r--otherlibs/unix/pause.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/otherlibs/unix/pause.c b/otherlibs/unix/pause.c
deleted file mode 100644
index 275853038..000000000
--- a/otherlibs/unix/pause.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/***********************************************************************/
-/* */
-/* Objective Caml */
-/* */
-/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
-/* */
-/* Copyright 1996 Institut National de Recherche en Informatique et */
-/* Automatique. Distributed only by permission. */
-/* */
-/***********************************************************************/
-
-/* $Id$ */
-
-#include <mlvalues.h>
-#include "unixsupport.h"
-
-value unix_pause(void) /* ML */
-{
- pause();
- return Val_unit;
-}