summaryrefslogtreecommitdiff
path: root/testsuite/tests/parallel/multicore_systhreads.ml
blob: 2f0fcf20b0de0479bc0087c909984c9edbdb59de (plain)
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
(* TEST
* hassysthreads
include systhreads
** bytecode
** native
*)


let producer oc = output_string oc "passed\n"; close_out oc

let consumer ic = print_endline @@ input_line ic; close_in ic

let main () =
  let (in_fd, out_fd) = Unix.pipe() in
  let ipipe = Unix.in_channel_of_descr in_fd in
  let opipe = Unix.out_channel_of_descr out_fd in
  let prod = Domain.spawn begin fun () ->
      let t = Thread.create
          (fun () -> Unix.sleep 3; Gc.full_major(); producer opipe) ()
      in
      Thread.join t
    end
  in
  let cons = Domain.spawn begin fun () ->
      let t = Thread.create (fun () -> consumer ipipe) () in
      Thread.join t
    end
  in
  Domain.join prod;
  Domain.join cons

let _ = Unix.handle_unix_error main (); exit 0