class type parallelizer =object
..end
method ptype : parallelization_type
method init : unit -> unit
method start_thread : 'a.
('a -> unit) ->
'a ->
Unix.file_descr list ->
string -> logger -> par_thread
start_thread f arg l
: Starts a new thread or process and calls
f arg
in that context. The list of file descriptors l
is ensured
to be shared with the main process.
There is no way to check when the thread terminates.