diff options
-rw-r--r-- | otherlibs/threads/thread.mli | 3 |
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 *) |