To get total installed RAM I can use popen("sysctl -n hw.memsize", "r")
, but is there some library to get this info without running external tools?
views:
67answers:
3
+5
A:
sysctl
You can use sysctl
(more detail here)
The symbols used in this section are declared in the file sysctl.h. — Function:
int sysctl (int *names, int nlen, void *oldval, size_t *oldlenp, void *newval, size_t newlen)
getrusage
#include <sys/resource.h>
int getrusage(int who, struct rusage *usage);
struct rusage {
struct timeval ru_utime; /* user time used */
struct timeval ru_stime; /* system time used */
long ru_maxrss; /* maximum resident set size */
long ru_ixrss; /* integral shared memory size */
long ru_idrss; /* integral unshared data size */
long ru_isrss; /* integral unshared stack size */
long ru_minflt; /* page reclaims */
long ru_majflt; /* page faults */
long ru_nswap; /* swaps */
long ru_inblock; /* block input operations */
long ru_oublock; /* block output operations */
long ru_msgsnd; /* messages sent */
long ru_msgrcv; /* messages received */
long ru_nsignals; /* signals received */
long ru_nvcsw; /* voluntary context switches */
long ru_nivcsw; /* involuntary context switches */
};
Jacob
2010-07-09 12:46:44
Do you know where to find mach api reference? For functions like host_info? Why no info on developer.apple.com?
tig
2010-07-09 13:36:41