2005-04-21 16:53:53 +02:00
|
|
|
#include "syslib.h"
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* sys_getinfo *
|
|
|
|
*===========================================================================*/
|
2005-07-19 14:24:51 +02:00
|
|
|
PUBLIC int sys_getinfo(request, ptr, len, ptr2, len2)
|
2005-04-21 16:53:53 +02:00
|
|
|
int request; /* system info requested */
|
2005-07-19 14:24:51 +02:00
|
|
|
void *ptr; /* pointer where to store it */
|
|
|
|
int len; /* max length of value to get */
|
|
|
|
void *ptr2; /* second pointer */
|
|
|
|
int len2; /* length or process nr */
|
2005-04-21 16:53:53 +02:00
|
|
|
{
|
|
|
|
message m;
|
|
|
|
|
|
|
|
m.I_REQUEST = request;
|
2006-03-03 10:44:55 +01:00
|
|
|
m.I_ENDPT = SELF; /* always store values at caller */
|
2005-07-19 14:24:51 +02:00
|
|
|
m.I_VAL_PTR = ptr;
|
|
|
|
m.I_VAL_LEN = len;
|
|
|
|
m.I_VAL_PTR2 = ptr2;
|
2006-03-03 10:44:55 +01:00
|
|
|
m.I_VAL_LEN2_E = len2;
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
return(_taskcall(SYSTASK, SYS_GETINFO, &m));
|
|
|
|
}
|
|
|
|
|
|
|
|
|