summaryrefslogtreecommitdiffstats
path: root/otherlibs/threads/unix.ml
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez-inria.fr>2003-12-29 22:15:02 +0000
committerDamien Doligez <damien.doligez-inria.fr>2003-12-29 22:15:02 +0000
commit31943bac1db3351118c7f911db99bd567f02a883 (patch)
tree053244070a0a7f612d637a0547f0d851a2dd024a /otherlibs/threads/unix.ml
parentdbf40e0b61af6f34d4a2736be1f0562ee5e8a52f (diff)
depollution suite (PR#1914 et PR#1956); byterun/weak.c: PR#1929 suite
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6041 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/threads/unix.ml')
-rw-r--r--otherlibs/threads/unix.ml9
1 files changed, 5 insertions, 4 deletions
diff --git a/otherlibs/threads/unix.ml b/otherlibs/threads/unix.ml
index a8f2a06ae..539b9039a 100644
--- a/otherlibs/threads/unix.ml
+++ b/otherlibs/threads/unix.ml
@@ -220,12 +220,13 @@ let rec write fd buf ofs len =
wait_write fd; write fd buf ofs len
external in_channel_of_descr : file_descr -> in_channel
- = "caml_open_descriptor_in"
+ = "caml_ml_open_descriptor_in"
external out_channel_of_descr : file_descr -> out_channel
- = "caml_open_descriptor_out"
-external descr_of_in_channel : in_channel -> file_descr = "channel_descriptor"
+ = "caml_ml_open_descriptor_out"
+external descr_of_in_channel : in_channel -> file_descr
+ = "caml_channel_descriptor"
external descr_of_out_channel : out_channel -> file_descr
- = "channel_descriptor"
+ = "caml_channel_descriptor"
type seek_command =
SEEK_SET