2007-05-19 Benoît Dejean <benoit@placenet.org> * Makefile.am: * mem.c: (main): * wd.c: (main): Fixed wd and new simple mem example. svn path=/trunk/; revision=2593
22 lines
268 B
C
22 lines
268 B
C
#include <glibtop.h>
|
|
#include <glibtop/mem.h>
|
|
|
|
#include <glib.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
glibtop_mem buf;
|
|
|
|
glibtop_init();
|
|
|
|
g_print("%lx\n", glibtop_global_server->features);
|
|
|
|
glibtop_get_mem(&buf);
|
|
|
|
glibtop_close();
|
|
|
|
return 0;
|
|
}
|
|
|