2010-09-14 23:50:05 +02:00
|
|
|
|
|
|
|
#include <lib.h>
|
|
|
|
#include <minix/sysinfo.h>
|
|
|
|
#include <minix/com.h>
|
|
|
|
|
2012-03-25 20:25:53 +02:00
|
|
|
int getsysinfo(
|
2011-12-11 22:30:35 +01:00
|
|
|
endpoint_t who, /* from whom to request info */
|
|
|
|
int what, /* what information is requested */
|
|
|
|
void *where, /* where to put it */
|
|
|
|
size_t size /* how big it should be */
|
|
|
|
)
|
2010-09-14 23:50:05 +02:00
|
|
|
{
|
|
|
|
message m;
|
|
|
|
m.SI_WHAT = what;
|
|
|
|
m.SI_WHERE = where;
|
2011-12-11 22:30:35 +01:00
|
|
|
m.SI_SIZE = size;
|
2010-09-14 23:50:05 +02:00
|
|
|
if (_syscall(who, COMMON_GETSYSINFO, &m) < 0) return(-1);
|
|
|
|
return(0);
|
|
|
|
}
|