Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Commit cc83455

Browse files
avzpquerna
authored andcommitted
sysctl(CTL_HW, HW_PHYSMEM) always returns unsigned long. Will work fine for 32 and 64 bit systems. Closes #1233.
1 parent 3dbb3cd commit cc83455

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
In development, Version 0.5.1 (unstable)
2+
3+
* #1233 Fix os.totalmem on FreeBSD amd64 (Artem Zaytsev)
4+
15
2011.07.05, Version 0.5.0 (unstable)
26

37
* New non-default libuv backend to support IOCP on Windows.

src/platform_freebsd.cc

+2-6
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,9 @@ double Platform::GetFreeMemory() {
181181
}
182182

183183
double Platform::GetTotalMemory() {
184-
#if defined(HW_PHYSMEM64)
185-
uint64_t info;
186-
static int which[] = {CTL_HW, HW_PHYSMEM64};
187-
#else
188-
unsigned int info;
184+
unsigned long info;
189185
static int which[] = {CTL_HW, HW_PHYSMEM};
190-
#endif
186+
191187
size_t size = sizeof(info);
192188

193189
if (sysctl(which, 2, &info, &size, NULL, 0) < 0) {

0 commit comments

Comments
 (0)