repo.or.cz
/
qemu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
target-s390x: Add missing tcg_temp_free_i64() in gen_jcc()
[qemu.git]
/
qemu-thread-posix.h
blob
ee4618e62095405bee67852e18c232aeaa883f9c
1
#ifndef __QEMU_THREAD_POSIX_H
2
#define __QEMU_THREAD_POSIX_H 1
3
#include
"pthread.h"
4
5
struct
QemuMutex
{
6
pthread_mutex_t lock
;
7
};
8
9
struct
QemuCond
{
10
pthread_cond_t cond
;
11
};
12
13
struct
QemuThread
{
14
pthread_t thread
;
15
};
16
17
#endif