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
06bf0176
Commit
06bf0176
authored
Jun 08, 2000
by
Ulrich Weigand
Committed by
Alexandre Julliard
Jun 08, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make a better guess to find the top of the initial stack.
Fixed FreeBSD compile problem (thanks to Gerald Pfeiffer).
parent
b4c68726
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
sysdeps.c
scheduler/sysdeps.c
+11
-4
No files found.
scheduler/sysdeps.c
View file @
06bf0176
...
...
@@ -16,6 +16,7 @@ static int *ph_errno = &h_errno;
#include <signal.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/time.h>
#include <sys/resource.h>
#ifdef HAVE_SYS_SYSCALL_H
# include <sys/syscall.h>
...
...
@@ -31,6 +32,7 @@ static int *ph_errno = &h_errno;
#include "selectors.h"
#include "server.h"
#include "winbase.h"
#include "global.h"
#include "wine/exception.h"
#include "debugtools.h"
...
...
@@ -225,8 +227,7 @@ void SYSDEPS_ExitThread( int status )
/***********************************************************************
* SYSDEPS_CallOnStack
*/
static
int
SYSDEPS_DoCallOnStack
(
int
(
*
func
)(
LPVOID
),
LPVOID
arg
)
WINE_UNUSED
;
static
int
SYSDEPS_DoCallOnStack
(
int
(
*
func
)(
LPVOID
),
LPVOID
arg
)
int
SYSDEPS_DoCallOnStack
(
int
(
*
func
)(
LPVOID
),
LPVOID
arg
)
{
int
retv
=
0
;
...
...
@@ -281,6 +282,9 @@ static LPVOID SYSDEPS_LargeStackLow = NULL;
void
SYSDEPS_SwitchToThreadStack
(
void
(
*
func
)(
void
)
)
{
DWORD
page_size
=
VIRTUAL_GetPageSize
();
DWORD
cur_stack
=
(((
DWORD
)
&
func
)
+
(
page_size
-
1
))
&
~
(
page_size
-
1
);
TEB
*
teb
=
NtCurrentTeb
();
LPVOID
stackTop
=
teb
->
stack_top
;
LPVOID
stackLow
=
teb
->
stack_low
;
...
...
@@ -293,8 +297,11 @@ void SYSDEPS_SwitchToThreadStack( void (*func)(void) )
rl
.
rlim_cur
=
8
*
1024
*
1024
;
}
SYSDEPS_LargeStackTop
=
teb
->
stack_top
=
&
func
-
128
;
SYSDEPS_LargeStackLow
=
teb
->
stack_low
=
teb
->
stack_top
-
rl
.
rlim_cur
;
teb
->
stack_top
=
(
LPVOID
)
cur_stack
;
teb
->
stack_low
=
(
LPVOID
)(
cur_stack
-
rl
.
rlim_cur
);
SYSDEPS_LargeStackTop
=
(
LPVOID
)(
cur_stack
-
2
*
page_size
);
SYSDEPS_LargeStackLow
=
(
LPVOID
)(
cur_stack
-
rl
.
rlim_cur
);
SYSDEPS_CallOnStack
(
stackTop
,
stackLow
,
(
int
(
*
)(
void
*
))
func
,
NULL
);
...
...
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