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
c6b2bccf
Commit
c6b2bccf
authored
Nov 13, 2023
by
Brendan Shanks
Committed by
Alexandre Julliard
Nov 14, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Don't use sysconf(_SC_PHYS_PAGES) on macOS.
parent
1817d4cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
virtual.c
dlls/ntdll/unix/virtual.c
+9
-0
No files found.
dlls/ntdll/unix/virtual.c
View file @
c6b2bccf
...
...
@@ -3329,6 +3329,15 @@ void virtual_get_system_info( SYSTEM_BASIC_INFORMATION *info, BOOL wow64 )
ULONG64
total
=
(
ULONG64
)
sinfo
.
totalram
*
sinfo
.
mem_unit
;
info
->
MmHighestPhysicalPage
=
max
(
1
,
total
/
page_size
);
}
#elif defined(__APPLE__)
/* sysconf(_SC_PHYS_PAGES) is buggy on macOS: in a 32-bit process, it
* returns an error on Macs with >4GB of RAM.
*/
INT64
memsize
;
size_t
len
=
sizeof
(
memsize
);
if
(
!
sysctlbyname
(
"hw.memsize"
,
&
memsize
,
&
len
,
NULL
,
0
))
info
->
MmHighestPhysicalPage
=
max
(
1
,
memsize
/
page_size
);
#elif defined(_SC_PHYS_PAGES)
LONG64
phys_pages
=
sysconf
(
_SC_PHYS_PAGES
);
...
...
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