minix/lib/libsys/getsysinfo.c

20 lines
423 B
C
Raw Normal View History

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(
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;
m.SI_SIZE = size;
2010-09-14 23:50:05 +02:00
if (_syscall(who, COMMON_GETSYSINFO, &m) < 0) return(-1);
return(0);
}