get/setpriority() and fsync() system calls

This commit is contained in:
Ben Gras
2005-07-01 18:01:33 +00:00
parent 7a31b9aa12
commit 3dcb2886ff
11 changed files with 130 additions and 4 deletions
+4
View File
@@ -98,6 +98,7 @@ OBJECTS = \
$(LIBRARY)(gettimeofday.o) \
$(LIBRARY)(getopt.o) \
$(LIBRARY)(lstat.o) \
$(LIBRARY)(priority.o) \
$(LIBRARY)(readlink.o) \
$(LIBRARY)(symlink.o) \
@@ -375,6 +376,9 @@ $(LIBRARY)(gettimeofday.o): gettimeofday.c
$(LIBRARY)(getopt.o): getopt.c
$(CC1) getopt.c
$(LIBRARY)(priority.o): priority.c
$(CC1) priority.c
$(LIBRARY)(readlink.o): readlink.c
$(CC1) readlink.c
+46
View File
@@ -0,0 +1,46 @@
/*
priority.c
*/
#include <errno.h>
#include <sys/types.h>
#include <sys/resource.h>
#include <lib.h>
#include <unistd.h>
#include <string.h>
#include <stddef.h>
int getpriority(int which, int who)
{
int v;
message m;
m.m1_i1 = which;
m.m1_i2 = who;
/* GETPRIORITY returns negative for error.
* Otherwise, it returns the priority plus the minimum
* priority, to distiginuish from error. We have to
* correct for this. (The user program has to check errno
* to see if something really went wrong.)
*/
if((v = _syscall(MM, GETPRIORITY, &m)) < 0) {
return v;
}
return v + PRIO_MIN;
}
int setpriority(int which, int who, int prio)
{
message m;
m.m1_i1 = which;
m.m1_i2 = who;
m.m1_i3 = prio;
return _syscall(MM, SETPRIORITY, &m);
}