mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 21:37:34 +00:00
Fixing build for windows.
Copied from Perforce Change: 189215 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
7e04c0f137
commit
9da5d74f1c
3 changed files with 9 additions and 4 deletions
|
|
@ -160,6 +160,7 @@ MPMCOMMON=\
|
|||
[root] \
|
||||
[sa] \
|
||||
[sac] \
|
||||
[scan] \
|
||||
[seg] \
|
||||
[shield] \
|
||||
[splay] \
|
||||
|
|
|
|||
|
|
@ -22,7 +22,9 @@
|
|||
SRCID(ssw3i3mv, "$Id$");
|
||||
|
||||
|
||||
Res StackScan(ScanState ss, Word *stackBot, Word mask, Word pattern)
|
||||
Res StackScan(ScanState ss, Word *stackBot,
|
||||
mps_area_scan_t scan_area,
|
||||
void *closure, size_t closure_size)
|
||||
{
|
||||
jmp_buf jb;
|
||||
|
||||
|
|
@ -43,7 +45,7 @@ Res StackScan(ScanState ss, Word *stackBot, Word mask, Word pattern)
|
|||
AVER(offsetof(_JUMP_BUFFER, Esi) == offsetof(_JUMP_BUFFER, Ebx) + 8);
|
||||
|
||||
return StackScanInner(ss, stackBot, (Word *)&((_JUMP_BUFFER *)jb)->Ebx, 3,
|
||||
mask, pattern);
|
||||
scan_area, closure, closure_size);
|
||||
}
|
||||
|
||||
/* C. COPYRIGHT AND LICENSE
|
||||
|
|
|
|||
|
|
@ -30,7 +30,9 @@
|
|||
SRCID(ssw3i6mv, "$Id$");
|
||||
|
||||
|
||||
Res StackScan(ScanState ss, Word *stackBot, Word mask, Word pattern)
|
||||
Res StackScan(ScanState ss, Word *stackBot,
|
||||
mps_area_scan_t scan_area,
|
||||
void *closure, size_t closure_size)
|
||||
{
|
||||
jmp_buf jb;
|
||||
|
||||
|
|
@ -62,7 +64,7 @@ Res StackScan(ScanState ss, Word *stackBot, Word mask, Word pattern)
|
|||
AVER(offsetof(_JUMP_BUFFER, R15) == offsetof(_JUMP_BUFFER, Rbx) + 64);
|
||||
|
||||
return StackScanInner(ss, stackBot, (Word *)&((_JUMP_BUFFER *)jb)->Rbx, 9,
|
||||
mask, pattern);
|
||||
scan_area, closure, closure_size);
|
||||
}
|
||||
|
||||
/* C. COPYRIGHT AND LICENSE
|
||||
|
|
|
|||
Loading…
Reference in a new issue