Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
dad03740
Commit
dad03740
authored
Jan 16, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Added a missing chunk in the NtLockVirtualMemory support.
Thanks to Rob Shearman for noticing this.
parent
04ac4bee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
sync.c
dlls/ntdll/sync.c
+16
-0
No files found.
dlls/ntdll/sync.c
View file @
dad03740
...
...
@@ -764,6 +764,22 @@ static BOOL call_apcs( BOOL alertable )
&
result
.
virtual_flush
.
addr
,
&
result
.
virtual_flush
.
size
,
0
);
break
;
case
APC_VIRTUAL_LOCK
:
result
.
type
=
call
.
type
;
result
.
virtual_lock
.
addr
=
call
.
virtual_lock
.
addr
;
result
.
virtual_lock
.
size
=
call
.
virtual_lock
.
size
;
result
.
virtual_lock
.
status
=
NtLockVirtualMemory
(
NtCurrentProcess
(),
&
result
.
virtual_lock
.
addr
,
&
result
.
virtual_lock
.
size
,
0
);
break
;
case
APC_VIRTUAL_UNLOCK
:
result
.
type
=
call
.
type
;
result
.
virtual_unlock
.
addr
=
call
.
virtual_unlock
.
addr
;
result
.
virtual_unlock
.
size
=
call
.
virtual_unlock
.
size
;
result
.
virtual_unlock
.
status
=
NtUnlockVirtualMemory
(
NtCurrentProcess
(),
&
result
.
virtual_unlock
.
addr
,
&
result
.
virtual_unlock
.
size
,
0
);
break
;
default:
server_protocol_error
(
"get_apc_request: bad type %d
\n
"
,
call
.
type
);
break
;
...
...
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