Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
d45fca8f
Commit
d45fca8f
authored
Nov 11, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Moved RtlCaptureStackBackTrace stub to the cpu-specific files.
parent
ab081aa8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
38 additions
and
24 deletions
+38
-24
exception.c
dlls/ntdll/exception.c
+0
-24
signal_i386.c
dlls/ntdll/signal_i386.c
+10
-0
signal_powerpc.c
dlls/ntdll/signal_powerpc.c
+9
-0
signal_sparc.c
dlls/ntdll/signal_sparc.c
+9
-0
signal_x86_64.c
dlls/ntdll/signal_x86_64.c
+10
-0
No files found.
dlls/ntdll/exception.c
View file @
d45fca8f
...
...
@@ -248,30 +248,6 @@ ULONG WINAPI RtlRemoveVectoredExceptionHandler( PVOID handler )
}
/*************************************************************************
* RtlCaptureStackBackTrace [NTDLL.@]
*
* Captures stack backtrace
*
* PARAMS
* Skip [I] Number of stack frames to skip before starting a capture
* Count [I] Number of stack frames to capture into Buffer
* Buffer [O] Array of backtrace pointers captured from stack
* Hash [O] Optional pointer to variable where backtrace hash should be stored
*
* RETURNS
* Number of captured stack frames or 0 if error occurred
*
* NOTES
* Unimplemented
*/
USHORT
WINAPI
RtlCaptureStackBackTrace
(
ULONG
Skip
,
ULONG
Count
,
PVOID
*
Buffer
,
ULONG
*
Hash
)
{
FIXME
(
"(%d, %d, %p, %p) stub!
\n
"
,
Skip
,
Count
,
Buffer
,
Hash
);
return
0
;
}
/*************************************************************
* __wine_spec_unimplemented_stub
*
...
...
dlls/ntdll/signal_i386.c
View file @
d45fca8f
...
...
@@ -2280,6 +2280,16 @@ void WINAPI __regs_RtlRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context )
DEFINE_REGS_ENTRYPOINT
(
RtlRaiseException
,
1
)
/*************************************************************************
* RtlCaptureStackBackTrace (NTDLL.@)
*/
USHORT
WINAPI
RtlCaptureStackBackTrace
(
ULONG
skip
,
ULONG
count
,
PVOID
*
buffer
,
ULONG
*
hash
)
{
FIXME
(
"(%d, %d, %p, %p) stub!
\n
"
,
skip
,
count
,
buffer
,
hash
);
return
0
;
}
/* wrapper for apps that don't declare the thread function correctly */
extern
void
DECLSPEC_NORETURN
call_thread_func
(
LPTHREAD_START_ROUTINE
entry
,
void
*
arg
);
__ASM_GLOBAL_FUNC
(
call_thread_func
,
...
...
dlls/ntdll/signal_powerpc.c
View file @
d45fca8f
...
...
@@ -1086,6 +1086,15 @@ void WINAPI RtlRaiseException( EXCEPTION_RECORD *rec )
if
(
status
)
raise_status
(
status
,
rec
);
}
/*************************************************************************
* RtlCaptureStackBackTrace (NTDLL.@)
*/
USHORT
WINAPI
RtlCaptureStackBackTrace
(
ULONG
skip
,
ULONG
count
,
PVOID
*
buffer
,
ULONG
*
hash
)
{
FIXME
(
"(%d, %d, %p, %p) stub!
\n
"
,
skip
,
count
,
buffer
,
hash
);
return
0
;
}
/***********************************************************************
* call_thread_entry_point
*/
...
...
dlls/ntdll/signal_sparc.c
View file @
d45fca8f
...
...
@@ -828,6 +828,15 @@ void WINAPI RtlRaiseException( EXCEPTION_RECORD *rec )
if
(
status
)
raise_status
(
status
,
rec
);
}
/*************************************************************************
* RtlCaptureStackBackTrace (NTDLL.@)
*/
USHORT
WINAPI
RtlCaptureStackBackTrace
(
ULONG
skip
,
ULONG
count
,
PVOID
*
buffer
,
ULONG
*
hash
)
{
FIXME
(
"(%d, %d, %p, %p) stub!
\n
"
,
skip
,
count
,
buffer
,
hash
);
return
0
;
}
/***********************************************************************
* call_thread_entry_point
*/
...
...
dlls/ntdll/signal_x86_64.c
View file @
d45fca8f
...
...
@@ -2882,6 +2882,16 @@ void WINAPI __regs_RtlRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context )
DEFINE_REGS_ENTRYPOINT
(
RtlRaiseException
,
1
)
/*************************************************************************
* RtlCaptureStackBackTrace (NTDLL.@)
*/
USHORT
WINAPI
RtlCaptureStackBackTrace
(
ULONG
skip
,
ULONG
count
,
PVOID
*
buffer
,
ULONG
*
hash
)
{
FIXME
(
"(%d, %d, %p, %p) stub!
\n
"
,
skip
,
count
,
buffer
,
hash
);
return
0
;
}
/***********************************************************************
* call_thread_func
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment