summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1997-12-09 09:10:14 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1997-12-09 09:10:14 +0000
commit3fda2b9b90d837e42d6dc7c1097b10c145e728b3 (patch)
treed1ea0abb02fed7aa165c8f5d65cb904911aaf5ef
parentcc6e02f7f2f34067537bae86d0abdb81cd4ff8b0 (diff)
Documentation de Thread.kill
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1833 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--otherlibs/threads/thread.mli3
1 files changed, 2 insertions, 1 deletions
diff --git a/otherlibs/threads/thread.mli b/otherlibs/threads/thread.mli
index 60dce9f61..c30e5fc62 100644
--- a/otherlibs/threads/thread.mli
+++ b/otherlibs/threads/thread.mli
@@ -39,7 +39,8 @@ external id : t -> int = "thread_id"
val exit : unit -> unit
(* Terminate prematurely the currently executing thread. *)
val kill : t -> unit
- (* Terminate prematurely the thread whose handle is given. *)
+ (* Terminate prematurely the thread whose handle is given.
+ This functionality is available only with bytecode-level threads. *)
(** Suspending threads *)