2006-10-30 16:53:38 +01:00
|
|
|
#include "syslib.h"
|
|
|
|
|
|
|
|
#if SPROFILE
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* sys_sprof *
|
|
|
|
*===========================================================================*/
|
2010-09-23 12:49:42 +02:00
|
|
|
PUBLIC int sys_sprof(action, size, freq, type, endpt, ctl_ptr, mem_ptr)
|
2006-10-30 16:53:38 +01:00
|
|
|
int action; /* start/stop profiling */
|
|
|
|
int size; /* available profiling memory */
|
|
|
|
int freq; /* sample frequency */
|
2010-09-23 12:49:42 +02:00
|
|
|
int type;
|
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 profiling memory */
|
|
|
|
{
|
|
|
|
message m;
|
|
|
|
|
|
|
|
m.PROF_ACTION = action;
|
|
|
|
m.PROF_MEM_SIZE = size;
|
|
|
|
m.PROF_FREQ = freq;
|
2010-09-23 12:49:42 +02:00
|
|
|
m.PROF_INTR_TYPE = type;
|
2006-10-30 16:53:38 +01:00
|
|
|
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_SPROF, &m));
|
2006-10-30 16:53:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|