2006-10-30 16:53:38 +01:00
|
|
|
#include "syslib.h"
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* sys_cprof *
|
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
int sys_cprof(action, size, endpt, ctl_ptr, mem_ptr)
|
2006-10-30 16:53:38 +01:00
|
|
|
int action; /* get/reset profiling tables */
|
|
|
|
int size; /* size of allocated memory */
|
2009-09-22 23:42:02 +02:00
|
|
|
endpoint_t endpt; /* caller endpoint */
|
2006-10-30 16:53:38 +01:00
|
|
|
void *ctl_ptr; /* location of info struct */
|
|
|
|
void *mem_ptr; /* location of allocated memory */
|
|
|
|
{
|
|
|
|
message m;
|
|
|
|
|
|
|
|
m.PROF_ACTION = action;
|
|
|
|
m.PROF_MEM_SIZE = size;
|
|
|
|
m.PROF_ENDPT = endpt;
|
|
|
|
m.PROF_CTL_PTR = ctl_ptr;
|
|
|
|
m.PROF_MEM_PTR = mem_ptr;
|
|
|
|
|
2010-02-09 16:20:09 +01:00
|
|
|
return(_kernel_call(SYS_CPROF, &m));
|
2006-10-30 16:53:38 +01:00
|
|
|
}
|
|
|
|
|