1995-10-30 02:21:56 -08:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
1995-10-30 02:21:56 -08:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1995-10-30 02:21:56 -08:00
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
|
|
|
(* User-level threads *)
|
|
|
|
|
|
|
|
type t
|
|
|
|
|
1996-04-03 02:02:34 -08:00
|
|
|
let critical_section = ref false
|
1995-11-14 09:11:31 -08:00
|
|
|
|
1996-04-18 09:32:04 -07:00
|
|
|
type resumption_status =
|
|
|
|
Resumed_wakeup
|
|
|
|
| Resumed_io
|
|
|
|
| Resumed_delay
|
|
|
|
| Resumed_join
|
1996-04-29 06:21:09 -07:00
|
|
|
| Resumed_wait of int * Unix.process_status
|
1996-04-18 09:32:04 -07:00
|
|
|
|
1996-04-03 02:02:34 -08:00
|
|
|
(* It is mucho important that the primitives that reschedule are called
|
|
|
|
through an ML function call, not directly. That's because when such a
|
|
|
|
primitive returns, the bytecode interpreter is only semi-obedient:
|
|
|
|
it takes sp from the new thread, but keeps pc from the old thread.
|
|
|
|
But that's OK if all calls to rescheduling primitives are immediately
|
|
|
|
followed by a RETURN operation, which will restore the correct pc
|
|
|
|
from the stack. *)
|
1995-10-30 02:21:56 -08:00
|
|
|
|
1996-04-03 02:02:34 -08:00
|
|
|
external thread_initialize : unit -> unit = "thread_initialize"
|
|
|
|
external thread_new : (unit -> unit) -> t = "thread_new"
|
|
|
|
external thread_yield : unit -> unit = "thread_yield"
|
|
|
|
external thread_sleep : unit -> unit = "thread_sleep"
|
|
|
|
external thread_wait_read : Unix.file_descr -> unit = "thread_wait_read"
|
1996-04-18 09:32:04 -07:00
|
|
|
external thread_wait_write : Unix.file_descr -> unit = "thread_wait_write"
|
|
|
|
external thread_wait_timed_read
|
|
|
|
: Unix.file_descr -> float -> resumption_status
|
|
|
|
= "thread_wait_timed_read"
|
|
|
|
external thread_wait_timed_write
|
|
|
|
: Unix.file_descr -> float -> resumption_status
|
|
|
|
= "thread_wait_timed_write"
|
1996-04-03 02:02:34 -08:00
|
|
|
external thread_join : t -> unit = "thread_join"
|
1996-04-18 09:32:04 -07:00
|
|
|
external thread_delay : float -> unit = "thread_delay"
|
1996-10-17 02:59:18 -07:00
|
|
|
external thread_wait_pid : int -> resumption_status = "thread_wait_pid"
|
1996-04-03 02:02:34 -08:00
|
|
|
external thread_wakeup : t -> unit = "thread_wakeup"
|
|
|
|
external thread_self : unit -> t = "thread_self"
|
|
|
|
external thread_kill : t -> unit = "thread_kill"
|
|
|
|
|
|
|
|
external id : t -> int = "thread_id"
|
|
|
|
|
|
|
|
(* In sleep() below, we rely on the fact that signals are detected
|
|
|
|
only at function applications and beginning of loops,
|
|
|
|
making all other operations atomic. *)
|
|
|
|
|
|
|
|
let sleep () = critical_section := false; thread_sleep()
|
|
|
|
let wait_read fd = thread_wait_read fd
|
|
|
|
let wait_write fd = thread_wait_write fd
|
|
|
|
let delay duration = thread_delay duration
|
|
|
|
let join th = thread_join th
|
|
|
|
let wakeup pid = thread_wakeup pid
|
|
|
|
let self () = thread_self()
|
|
|
|
let kill pid = thread_kill pid
|
|
|
|
let exit () = thread_kill(thread_self())
|
|
|
|
|
1996-04-18 09:32:04 -07:00
|
|
|
let wait_timed_read_aux fd d = thread_wait_timed_read fd d
|
|
|
|
let wait_timed_write_aux fd d = thread_wait_timed_write fd d
|
1996-10-17 02:59:18 -07:00
|
|
|
let wait_pid_aux pid = thread_wait_pid pid
|
1996-04-18 09:32:04 -07:00
|
|
|
|
|
|
|
let wait_timed_read fd d = wait_timed_read_aux fd d = Resumed_io
|
|
|
|
let wait_timed_write fd d = wait_timed_write_aux fd d = Resumed_io
|
1996-10-17 02:59:18 -07:00
|
|
|
let wait_pid pid =
|
|
|
|
match wait_pid_aux pid with
|
|
|
|
Resumed_wait(pid, status) -> (pid, status)
|
|
|
|
| _ -> invalid_arg "Thread.wait_pid"
|
1996-04-18 09:32:04 -07:00
|
|
|
|
1996-04-03 02:02:34 -08:00
|
|
|
(* For new, make sure the function passed to thread_new always terminates
|
|
|
|
by calling exit. *)
|
1995-10-30 02:21:56 -08:00
|
|
|
|
1996-04-22 04:15:41 -07:00
|
|
|
let create fn arg =
|
1995-10-30 02:21:56 -08:00
|
|
|
thread_new
|
|
|
|
(fun () ->
|
|
|
|
try
|
1996-04-03 02:02:34 -08:00
|
|
|
Printexc.print fn arg; exit()
|
1995-10-30 02:21:56 -08:00
|
|
|
with x ->
|
1996-04-03 02:02:34 -08:00
|
|
|
flush stdout; flush stderr; exit())
|
1995-11-14 09:11:31 -08:00
|
|
|
|
|
|
|
(* Preemption *)
|
|
|
|
|
1996-04-03 02:02:34 -08:00
|
|
|
let preempt signal =
|
|
|
|
if !critical_section then () else thread_yield()
|
1995-10-30 02:21:56 -08:00
|
|
|
|
|
|
|
(* Initialization of the scheduler *)
|
|
|
|
|
|
|
|
let _ =
|
1995-11-14 09:11:31 -08:00
|
|
|
Sys.signal Sys.sigvtalrm (Sys.Signal_handle preempt);
|
1995-10-30 02:21:56 -08:00
|
|
|
thread_initialize()
|