forked from discourse/discourse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implement MemInfo.mem_total on Mac OS X
- Loading branch information
1 parent
030ecfa
commit 0e27af8
Showing
1 changed file
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
class MemInfo | ||
|
||
# Total memory in kb. Only works on systems with /proc/meminfo. | ||
# Total memory in kb. On Mac OS uses "sysctl", elsewhere expects the system has /proc/meminfo. | ||
# Returns nil if it cannot be determined. | ||
def mem_total | ||
@mem_total ||= begin | ||
if s = `grep MemTotal /proc/meminfo` | ||
/(\d+)/.match(s)[0].try(:to_i) | ||
else | ||
@mem_total ||= | ||
begin | ||
system = `uname`.strip | ||
if system == "Darwin" | ||
s = `sysctl -n hw.memsize`.strip | ||
s.to_i / 1024 | ||
else | ||
s = `grep MemTotal /proc/meminfo` | ||
/(\d+)/.match(s)[0].try(:to_i) | ||
end | ||
rescue | ||
nil | ||
end | ||
end | ||
end | ||
|
||
end | ||
end |