1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
(******************************************************************************
* Core *
* *
* Copyright (C) 2008- Jane Street Holding, LLC *
* Contact: opensource@janestreet.com *
* WWW: http://www.janestreet.com/ocaml *
* *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
* *
******************************************************************************)
module List = Core_list
module String = Core_string
let threads_have_been_created = ref false
include Caml.Thread
let create f arg =
threads_have_been_created := true;
let f arg =
try f arg
with x ->
Printf.eprintf "%s\n%!" (Exn.to_string x);
raise x
in
create f arg
;;
let threads_have_been_created () = !threads_have_been_created
let wait_signal sigs = wait_signal (List.map ~f:Signal.to_caml_int sigs)
let sigmask cmd sigs =
let cmd =
match cmd with
| `Set -> Unix.SIG_SETMASK
| `Block -> Unix.SIG_BLOCK
| `Unblock -> Unix.SIG_UNBLOCK
in
let sigs = List.map ~f:Signal.to_caml_int sigs in
List.map ~f:Signal.of_caml_int (sigmask cmd sigs)
;;
let num_threads () =
let rec find_thread_count = function
| [] -> None
| line :: xs ->
if String.is_prefix line ~prefix:"Threads:" then
begin
try
Some (int_of_string
(String.strip (snd (String.lsplit2_exn line ~on:':'))))
with
| _ -> None
end
else find_thread_count xs
in
try
find_thread_count
(In_channel.read_lines
("/proc/" ^ string_of_int (Unix.getpid ()) ^ "/status"))
with _ -> None
;;
let block_forever () =
Event.sync (Event.receive (Event.new_channel ()))
;;
|