summaryrefslogtreecommitdiffstats
path: root/testsuite/tests/lib-threads/test5.ml
blob: 24591919d73256d212db9eca9212b67ec7eeba41 (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
(***********************************************************************)
(*                                                                     *)
(*                                OCaml                                *)
(*                                                                     *)
(*            Xavier Leroy, projet Cristal, INRIA Rocquencourt         *)
(*                                                                     *)
(*  Copyright 1996 Institut National de Recherche en Informatique et   *)
(*  en Automatique.  All rights reserved.  This file is distributed    *)
(*  under the terms of the Q Public License version 1.0.               *)
(*                                                                     *)
(***********************************************************************)

open Event

let ch = (new_channel() : string channel)

let rec sender msg =
  sync (send ch msg);
  sender msg

let rec receiver name =
  print_string (name ^ ": " ^ sync (receive ch) ^ "\n");
  flush stdout;
  receiver name

let _ =
  Thread.create sender "hello";
  Thread.create sender "world";
  Thread.create receiver "A";
  receiver "B";
  exit 0