summaryrefslogtreecommitdiff
path: root/libcult/examples/sched/cancel/cancel.cxx
blob: ee714492c6d56fab8fb97bbb062d39164057fdc1 (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
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
// file      : examples/sched/cancel/cancel.cxx
// author    : Boris Kolpackov <boris@kolpackov.net>
// copyright : Copyright (c) 2005-2010 Boris Kolpackov
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#include <cult/types.hxx>

#include <cult/mm/shptr.hxx>

#include <cult/sched/lock.hxx>
#include <cult/sched/mutex.hxx>
#include <cult/sched/thread.hxx>
#include <cult/sched/condition.hxx>


#include <iostream>
#include <unistd.h> // sleep

using std::cerr;
using std::endl;

using namespace Cult;
using namespace Sched;

Void*
cond_wait_thread_proc (Void*)
{
  try
  {
    Mutex mutex;
    Condition cond (mutex);

    Lock lock (mutex);

    cond.wait ();
  }
  /*
  catch (std::thread_canceled const& e)
  {
    cerr << "caught thread_canceled" << endl;
    throw;
  }
  */
  catch (...)
  {
    cerr << "presumably caught thread_canceled" << endl;
    throw;
  }

  return 0;
}


Int
main ()
{
  Shptr<Thread> thread (new Thread (cond_wait_thread_proc));

  sleep (1);

  thread->cancel ();
  thread->join ();
}