
The getsysinfo(2), getrusage(2), and svrctl(2) calls used the same call number to different services. Since we want to give each service its own call number ranges, this is no longer tenable. This patch introduces per-service call numbers for these calls. Note that the remainder of the COMMON_ range is left intact, as these the remaining requests in it are processed by SEF and thus server- agnostic. The range should really be prefixed with SEF_ now. Change-Id: I80d728bbeb98227359c525494c433965b40fefc3
33 lines
666 B
C
33 lines
666 B
C
#include <sys/cdefs.h>
|
|
#include "namespace.h"
|
|
#include <lib.h>
|
|
|
|
#include <unistd.h>
|
|
#include <sys/resource.h>
|
|
|
|
int getrusage(int who, struct rusage *r_usage)
|
|
{
|
|
int rc;
|
|
message m;
|
|
m.RU_WHO = who;
|
|
m.RU_RUSAGE_ADDR = r_usage;
|
|
|
|
if (r_usage == NULL) {
|
|
errno = EFAULT;
|
|
return -1;
|
|
}
|
|
if (who != RUSAGE_SELF && who != RUSAGE_CHILDREN) {
|
|
errno = EINVAL;
|
|
return -1;
|
|
}
|
|
|
|
memset(r_usage, 0, sizeof(struct rusage));
|
|
if ((rc = _syscall(PM_PROC_NR, PM_GETRUSAGE, &m)) < 0)
|
|
return rc;
|
|
m.RU_RUSAGE_ADDR = r_usage;
|
|
if ((rc = _syscall(VFS_PROC_NR, VFS_GETRUSAGE, &m)) < 0)
|
|
return rc;
|
|
m.RU_RUSAGE_ADDR = r_usage;
|
|
return _syscall(VM_PROC_NR, VM_GETRUSAGE, &m);
|
|
}
|