blob: 58cc2cc385146fd7760ca7d4d5d796e798b310e7 (
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
|
// file : examples/sched/main/main.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/thread.hxx>
#include <iostream>
#include <unistd.h> // sleep
using namespace Cult;
using namespace Sched;
using std::cerr;
using std::endl;
Void*
thread_func (Void*)
{
cerr << "second thread: going to sleep for a few seconds" << endl;
sleep (2);
cerr << "second thread: woke up, now exiting" << endl;
return 0;
}
Int
main ()
{
Shptr<Thread> self (new Thread);
Shptr<Thread> other (new Thread (thread_func));
cerr << "initial thread: exiting" << endl;
Thread::exit (0);
}
|