ReactOS
0.4.16-dev-1668-g3f66390
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
except.c
Go to the documentation of this file.
1
/*
2
* COPYRIGHT: See COPYING in the top level directory
3
* PROJECT: ReactOS Run-Time Library
4
* PURPOSE: User-mode exception support for IA-32
5
* FILE: lib/rtl/arm/except.c
6
* PROGRAMERS:
7
*/
8
9
/* INCLUDES *****************************************************************/
10
11
#include <rtl.h>
12
#define NDEBUG
13
#include <debug.h>
14
15
/* PUBLIC FUNCTIONS **********************************************************/
16
17
/*
18
* @implemented
19
*/
20
VOID
21
NTAPI
22
RtlGetCallersAddress
(
23
_Out_
PVOID
*CallersAddress,
24
_Out_
PVOID
*CallersCaller)
25
{
26
ASSERT
(
FALSE
);
27
}
28
29
/*
30
* @implemented
31
*/
32
BOOLEAN
33
NTAPI
34
RtlDispatchException
(
35
_In_
PEXCEPTION_RECORD
ExceptionRecord,
36
_In_
PCONTEXT
Context
)
37
{
38
ASSERT
(
FALSE
);
39
return
FALSE
;
40
}
41
42
/*
43
* @implemented
44
*/
45
VOID
46
NTAPI
47
RtlUnwind
(
48
_In_opt_
PVOID
TargetFrame,
49
_In_opt_
PVOID
TargetIp,
50
_In_opt_
PEXCEPTION_RECORD
ExceptionRecord,
51
_In_
PVOID
ReturnValue
)
52
{
53
ASSERT
(
FALSE
);
54
}
55
56
VOID
57
NTAPI
58
RtlInitializeContext
(
59
IN
HANDLE
ProcessHandle
,
60
OUT
PCONTEXT
ThreadContext,
61
IN
PVOID
ThreadStartParam
OPTIONAL
,
62
IN
PTHREAD_START_ROUTINE
ThreadStartAddress,
63
IN
PINITIAL_TEB
StackBase)
64
{
65
}
66
67
/* EOF */
BOOLEAN
unsigned char BOOLEAN
Definition:
ProcessorBind.h:185
ReturnValue
UINT32 void void ** ReturnValue
Definition:
acevents.h:216
RtlUnwind
#define RtlUnwind
Definition:
longjmp.c:9
FALSE
#define FALSE
Definition:
types.h:117
void
Definition:
nsiface.idl:2307
ASSERT
#define ASSERT(a)
Definition:
mode.c:44
ProcessHandle
_In_ HANDLE ProcessHandle
Definition:
mmfuncs.h:403
RtlDispatchException
NTSYSAPI BOOLEAN NTAPI RtlDispatchException(_In_ PEXCEPTION_RECORD ExceptionRecord, _In_ PCONTEXT Context)
Definition:
except.c:43
PTHREAD_START_ROUTINE
ULONG(NTAPI * PTHREAD_START_ROUTINE)(PVOID Parameter)
Definition:
rtltypes.h:560
_Out_
#define _Out_
Definition:
no_sal2.h:160
_In_
#define _In_
Definition:
no_sal2.h:158
_In_opt_
#define _In_opt_
Definition:
no_sal2.h:212
RtlInitializeContext
VOID NTAPI RtlInitializeContext(IN HANDLE ProcessHandle, OUT PCONTEXT ThreadContext, IN PVOID ThreadStartParam OPTIONAL, IN PTHREAD_START_ROUTINE ThreadStartAddress, IN PINITIAL_TEB StackBase)
Definition:
except.c:58
RtlGetCallersAddress
VOID NTAPI RtlGetCallersAddress(_Out_ PVOID *CallersAddress, _Out_ PVOID *CallersCaller)
Definition:
except.c:22
OPTIONAL
PULONG MinorVersion OPTIONAL
Definition:
CrossNt.h:68
Context
Definition:
compobj.c:4795
_CONTEXT
Definition:
nt_native.h:1406
_EXCEPTION_RECORD
Definition:
compat.h:207
_INITIAL_TEB
Definition:
pstypes.h:692
NTAPI
#define NTAPI
Definition:
typedefs.h:36
IN
#define IN
Definition:
typedefs.h:39
OUT
#define OUT
Definition:
typedefs.h:40
sdk
lib
rtl
arm
except.c
Generated on Sun Aug 24 2025 06:14:49 for ReactOS by
1.9.6