简体   繁体   中英

Get total system memory without external tools

要获得安装的总RAM,我可以使用popen("sysctl -n hw.memsize", "r") ,但是是否有一些库可以在不运行外部工具的情况下获取此信息?

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

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 */
};

You can use the api getrusage

     int who = RUSAGE_SELF;
    struct rusage usage={0,};
    int ret=0;
    ret = getrusage(who, &usage);

Look up the structure of rusage and pick the values of concern to you.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM