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
a0d6c8c2
Commit
a0d6c8c2
authored
Feb 19, 2014
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Fix build on older Mac OS X.
parent
5395d23a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
23 deletions
+16
-23
heap.c
dlls/kernel32/heap.c
+16
-23
No files found.
dlls/kernel32/heap.c
View file @
a0d6c8c2
...
...
@@ -1164,14 +1164,6 @@ BOOL WINAPI GlobalMemoryStatusEx( LPMEMORYSTATUSEX lpmemex )
#ifdef VM_SWAPUSAGE
struct
xsw_usage
swap
;
#endif
#ifdef HAVE_MACH_MACH_H
host_name_port_t
host
;
mach_msg_type_number_t
count
;
kern_return_t
kr
;
host_basic_info_data_t
info
;
vm_statistics64_data_t
vm_stat
;
vm_size_t
page_size
;
#endif
#elif defined(sun)
unsigned
long
pagesize
,
maxpages
,
freepages
,
swapspace
,
swapfree
;
struct
anoninfo
swapinf
;
...
...
@@ -1238,6 +1230,7 @@ BOOL WINAPI GlobalMemoryStatusEx( LPMEMORYSTATUSEX lpmemex )
}
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) || defined(__APPLE__)
total
=
0
;
lpmemex
->
ullAvailPhys
=
0
;
mib
[
0
]
=
CTL_HW
;
#ifdef HW_MEMSIZE
...
...
@@ -1248,22 +1241,29 @@ BOOL WINAPI GlobalMemoryStatusEx( LPMEMORYSTATUSEX lpmemex )
#endif
#ifdef HAVE_MACH_MACH_H
host
=
mach_host_self
();
{
host_name_port_t
host
=
mach_host_self
();
mach_msg_type_number_t
count
;
#ifdef HOST_VM_INFO64_COUNT
vm_size_t
page_size
;
vm_statistics64_data_t
vm_stat
;
count
=
HOST_VM_INFO64_COUNT
;
if
(
host_statistics64
(
host
,
HOST_VM_INFO64
,
(
host_info64_t
)
&
vm_stat
,
&
count
)
==
KERN_SUCCESS
&&
host_page_size
(
host
,
&
page_size
==
KERN_SUCCESS
))
lpmemex
->
ullAvailPhys
=
(
vm_stat
.
free_count
+
vm_stat
.
inactive_count
)
*
(
DWORDLONG
)
page_size
;
#endif
if
(
!
total
)
{
host_basic_info_data_t
info
;
count
=
HOST_BASIC_INFO_COUNT
;
kr
=
host_info
(
host
,
HOST_BASIC_INFO
,
(
host_info_t
)
&
info
,
&
count
);
if
(
kr
==
KERN_SUCCESS
)
if
(
host_info
(
host
,
HOST_BASIC_INFO
,
(
host_info_t
)
&
info
,
&
count
)
==
KERN_SUCCESS
)
total
=
info
.
max_mem
;
}
count
=
HOST_VM_INFO64_COUNT
;
kr
=
host_statistics64
(
host
,
HOST_VM_INFO64
,
(
host_info64_t
)
&
vm_stat
,
&
count
);
if
(
kr
==
KERN_SUCCESS
)
kr
=
host_page_size
(
host
,
&
page_size
);
mach_port_deallocate
(
mach_task_self
(),
host
);
}
#endif
if
(
!
total
)
...
...
@@ -1277,13 +1277,6 @@ BOOL WINAPI GlobalMemoryStatusEx( LPMEMORYSTATUSEX lpmemex )
if
(
total
)
lpmemex
->
ullTotalPhys
=
total
;
lpmemex
->
ullAvailPhys
=
0
;
#ifdef HAVE_MACH_MACH_H
if
(
kr
==
KERN_SUCCESS
)
lpmemex
->
ullAvailPhys
=
(
vm_stat
.
free_count
+
vm_stat
.
inactive_count
)
*
(
DWORDLONG
)
page_size
;
#endif
if
(
!
lpmemex
->
ullAvailPhys
)
{
mib
[
1
]
=
HW_USERMEM
;
...
...
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