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
1344aec6
Commit
1344aec6
authored
Jun 23, 2011
by
Austin English
Committed by
Alexandre Julliard
Jun 28, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Stub a few of the numa functions.
parent
aa34b2fb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
3 deletions
+33
-3
kernel32.spec
dlls/kernel32/kernel32.spec
+3
-3
process.c
dlls/kernel32/process.c
+30
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
1344aec6
...
...
@@ -568,9 +568,9 @@
@ stub GetNextVDMCommand
@ stub GetNlsSectionName
# @ stub GetNumaAvailableMemory
# @ stub GetNumaAvailableMemoryNode
# @ stub GetNumaHighestNodeNumber
# @ stub GetNumaNodeProcessorMask
@ stdcall GetNumaAvailableMemoryNode(long ptr)
@ stdcall GetNumaHighestNodeNumber(ptr)
@ stdcall GetNumaNodeProcessorMask(long ptr)
# @ stub GetNumaProcessorMap
# @ stub GetNumaProcessorNode
@ stdcall GetNumberFormatA(long long str ptr ptr long)
...
...
dlls/kernel32/process.c
View file @
1344aec6
...
...
@@ -3783,3 +3783,33 @@ HRESULT WINAPI RegisterApplicationRecoveryCallback(APPLICATION_RECOVERY_CALLBACK
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
E_FAIL
;
}
/**********************************************************************
* GetNumaHighestNodeNumber (KERNEL32.@)
*/
BOOL
WINAPI
GetNumaHighestNodeNumber
(
PULONG
highestnode
)
{
FIXME
(
"(%p): stub
\n
"
,
highestnode
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/**********************************************************************
* GetNumaNodeProcessorMask (KERNEL32.@)
*/
BOOL
WINAPI
GetNumaNodeProcessorMask
(
UCHAR
node
,
PULONGLONG
mask
)
{
FIXME
(
"(%c %p): stub
\n
"
,
node
,
mask
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/**********************************************************************
* GetNumaAvailableMemoryNode (KERNEL32.@)
*/
BOOL
WINAPI
GetNumaAvailableMemoryNode
(
UCHAR
node
,
PULONGLONG
available_bytes
)
{
FIXME
(
"(%c %p): stub
\n
"
,
node
,
available_bytes
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
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