ReactOS
0.4.16-dev-942-g91fadeb
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
NtCreateThread.c
Go to the documentation of this file.
1
/*
2
* PROJECT: ReactOS api tests
3
* LICENSE: See COPYING in the top level directory
4
* PURPOSE: Test for NtCreateThread
5
* PROGRAMMER: Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
6
*/
7
8
#include "
precomp.h
"
9
10
START_TEST
(
NtCreateThread
)
11
{
12
NTSTATUS
Status
;
13
INITIAL_TEB
InitialTeb;
14
HANDLE
ThreadHandle;
15
OBJECT_ATTRIBUTES
Attributes
;
16
17
InitializeObjectAttributes
(&
Attributes
,
NULL
, 0,
NULL
,
NULL
);
18
ZeroMemory
(&InitialTeb,
sizeof
(
INITIAL_TEB
));
19
20
Status
=
NtCreateThread
(&ThreadHandle,
21
0,
22
&
Attributes
,
23
NtCurrentProcess
(),
24
NULL
,
25
(
PCONTEXT
)0x70000000,
/* Aligned usermode address */
26
&InitialTeb,
27
FALSE
);
28
29
ok_hex
(
Status
,
STATUS_ACCESS_VIOLATION
);
30
}
ok_hex
#define ok_hex(expression, result)
Definition:
atltest.h:94
START_TEST
#define START_TEST(x)
Definition:
atltest.h:75
NTSTATUS
LONG NTSTATUS
Definition:
precomp.h:26
NULL
#define NULL
Definition:
types.h:112
FALSE
#define FALSE
Definition:
types.h:117
Status
Status
Definition:
gdiplustypes.h:25
void
Definition:
nsiface.idl:2307
InitializeObjectAttributes
#define InitializeObjectAttributes(p, n, a, r, s)
Definition:
reg.c:106
NtCurrentProcess
#define NtCurrentProcess()
Definition:
nt_native.h:1657
NtCreateThread
NTSYSAPI NTSTATUS NTAPI NtCreateThread(OUT PHANDLE phThread, IN ACCESS_MASK AccessMask, IN POBJECT_ATTRIBUTES ObjectAttributes, IN HANDLE hProcess, OUT PCLIENT_ID pClientId, IN PCONTEXT pContext, OUT PSTACKINFO pStackInfo, IN BOOLEAN bSuspended)
STATUS_ACCESS_VIOLATION
#define STATUS_ACCESS_VIOLATION
Definition:
ntstatus.h:242
_CONTEXT
Definition:
nt_native.h:1406
_INITIAL_TEB
Definition:
pstypes.h:692
_OBJECT_ATTRIBUTES
Definition:
umtypes.h:182
Attributes
_Must_inspect_result_ _In_ WDFDMAENABLER _In_ _In_opt_ PWDF_OBJECT_ATTRIBUTES Attributes
Definition:
wdfcommonbuffer.h:97
precomp.h
ZeroMemory
#define ZeroMemory
Definition:
winbase.h:1743
modules
rostests
apitests
ntdll
NtCreateThread.c
Generated on Thu Apr 3 2025 06:07:45 for ReactOS by
1.9.6