4f294c247f
This patch mainly copies and modifies files existing in the current libc implementing minix specific functions. To keep consisten with the NetBSD libc, we remove namespace stubs and we use "namespace.h" and weak links.
23 lines
462 B
C
23 lines
462 B
C
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
|
|
#ifdef __weak_alias
|
|
#define cprofile _cprofile
|
|
__weak_alias(cprofile, _cprofile)
|
|
#endif
|
|
|
|
#include <lib.h>
|
|
#include <minix/profile.h>
|
|
|
|
int cprofile(int action, int size, void *ctl_ptr, void *mem_ptr)
|
|
{
|
|
message m;
|
|
|
|
m.PROF_ACTION = action;
|
|
m.PROF_MEM_SIZE = size;
|
|
m.PROF_CTL_PTR = (void *) ctl_ptr;
|
|
m.PROF_MEM_PTR = (void *) mem_ptr;
|
|
|
|
return _syscall(PM_PROC_NR, CPROF, &m);
|
|
}
|
|
|