On Mac OS X, I can see how much memory is free in Activity Monitor. How can I programmatically do this?
|
|
|
This should do it. Google around for the exact meaning of the fields in the structures, but it should be pretty self-explanatory working from this code.
|
|||||||||||||||
|
|
Actually, that's only half true. free is not standard UNIX but a Linux-only command. You will neither find it on BSD, nor on OS X. For that matter, a better way to get memory information is through sysctl. I.e. run
and you'll get the idea. To use this programmatically in C, refer to man sysctlbyname. Also, I don't see how GNOME System Monitor helps on OS X. df is a good hint, though. If you just plan to use the shell to gather those data and opt for top, read man top. You can invoke top with -l 1 to get one sample only and limit the process table to, say, 20 processes with -n 20. Keep in mind that you won't get CPU values for procs using only sample, the reason is outlined in the man page. A simple example to get some information about memory out of top (complete lines only):
Hope that helps. |
|||
|
|
|
The usual commands to do that on UNIX are
You would then use/chain one or many of those to extract one of the information given: ack, sed, grep, head, cut, ... Note: If you don't plan to "programmatically" check memory, I would advise you to rather use top to know which processes are using your CPU and RAM. Gnome System Monitor is one of its GUI equivalents. |
|||
|