2006-10-30 16:53:38 +01:00
|
|
|
#include "syslib.h"
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* sys_profbuf *
|
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
int sys_profbuf(ctl_ptr, mem_ptr)
|
2006-10-30 16:53:38 +01:00
|
|
|
void *ctl_ptr; /* pointer to control structure */
|
|
|
|
void *mem_ptr; /* pointer to profiling table */
|
|
|
|
{
|
|
|
|
message m;
|
|
|
|
|
|
|
|
m.PROF_CTL_PTR = ctl_ptr;
|
|
|
|
m.PROF_MEM_PTR = mem_ptr;
|
|
|
|
|
2010-02-09 16:20:09 +01:00
|
|
|
return(_kernel_call(SYS_PROFBUF, &m));
|
2006-10-30 16:53:38 +01:00
|
|
|
}
|
|
|
|
|