projects
/
sbcl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Preliminary work towards threads on win32
[sbcl.git]
/
src
/
runtime
/
win32-thread-private-events.h
1
#ifndef _WIN32_THREAD_PRIVATE_EVENTS_H_
2
#define _WIN32_THREAD_PRIVATE_EVENTS_H_
3
4
#ifndef WIN32_LEAN_AND_MEAN
5
#define WIN32_LEAN_AND_MEAN
6
#endif
7
#include <windows.h>
8
9
struct private_events {
10
HANDLE events[2];
11
};
12
13
#endif /* _WIN32_THREAD_PRIVATE_EVENTS_H_ */