aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qwaitcondition_unix.cpp
blob: 6737e9df9a042d6309d195bc6101709260c5c4d6 (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
//! [0]
while True:
    mutex.lock()
    keyPressed.wait(mutex)
    do_something()
    mutex.unlock()
//! [0]


//! [1]
while True:
    getchar()
    keyPressed.wakeAll()

//! [1]


//! [2]
while True:
    mutex.lock()
    keyPressed.wait(&mutex)
    count += 1
    mutex.unlock()

    do_something()

    mutex.lock()
    count -= 1
    mutex.unlock()
//! [2]


//! [3]
while True:
    getchar()

    mutex.lock()
    # Sleep until there are no busy worker threads
    while count > 0:
        mutex.unlock()
        sleep(1)
        mutex.lock()
    keyPressed.wakeAll()
    mutex.unlock()
//! [3]