ReactOS
0.4.16-dev-937-g7afcd2a
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
threadwait.c
Go to the documentation of this file.
1
/*
2
* Author: Skywing (skywing@valhallalegends.com)
3
* Date: 09/09/2003
4
* Purpose: Probe for PsUnblockThread crash due to double-acquire spin lock.
5
*/
6
7
#define WIN32_NO_STATUS
8
#include <windows.h>
9
#include <stdio.h>
10
11
#define NTOS_MODE_USER
12
#include <
ndk/ntndk.h
>
13
14
DWORD
__stdcall
threadfunc
(
void
* UNREFERENCED)
15
{
16
printf
(
"Thread: Initialized\n"
);
17
Sleep
(2500);
18
printf
(
"Thread: Terminating...\n"
);
19
return
0;
20
}
21
22
int
main
(
int
ac,
char
**av)
23
{
24
DWORD
id
;
25
HANDLE
Thread
;
26
27
Thread
=
CreateThread
(0, 0,
threadfunc
, 0, 0, &
id
);
28
printf
(
"Main: ThreadId for new thread is %08lx\n"
,
id
);
29
printf
(
"Main: Waiting on thread...\n"
);
30
WaitForSingleObject
(
Thread
,
INFINITE
);
31
printf
(
"Main: OK, somebody fixed the PsUnblockThread spinlock double-acquire crash\n"
);
32
NtClose
(
Thread
);
33
printf
(
"Main: Terminating...\n"
);
34
return
0;
35
}
CreateThread
HANDLE WINAPI DECLSPEC_HOTPATCH CreateThread(IN LPSECURITY_ATTRIBUTES lpThreadAttributes, IN DWORD dwStackSize, IN LPTHREAD_START_ROUTINE lpStartAddress, IN LPVOID lpParameter, IN DWORD dwCreationFlags, OUT LPDWORD lpThreadId)
Definition:
thread.c:137
main
int main()
Definition:
test.c:6
INFINITE
#define INFINITE
Definition:
serial.h:102
DWORD
unsigned long DWORD
Definition:
ntddk_ex.h:95
Thread
_In_opt_ PFILE_OBJECT _In_opt_ PETHREAD Thread
Definition:
fltkernel.h:2653
printf
#define printf
Definition:
freeldr.h:97
id
GLuint id
Definition:
glext.h:5910
void
Definition:
nsiface.idl:2307
NtClose
NTSTATUS NTAPI NtClose(IN HANDLE Handle)
Definition:
obhandle.c:3402
ntndk.h
WaitForSingleObject
DWORD WINAPI WaitForSingleObject(IN HANDLE hHandle, IN DWORD dwMilliseconds)
Definition:
synch.c:82
Sleep
VOID WINAPI DECLSPEC_HOTPATCH Sleep(IN DWORD dwMilliseconds)
Definition:
synch.c:790
threadfunc
DWORD __stdcall threadfunc(void *UNREFERENCED)
Definition:
threadwait.c:14
__stdcall
#define __stdcall
Definition:
typedefs.h:25
modules
rostests
tests
threadwait
threadwait.c
Generated on Wed Apr 2 2025 06:09:09 for ReactOS by
1.9.6