apparmor/tests/regression/subdomain/syscall_setpriority.c
Steve Beattie 6d3e74907d Import the rest of the core functionality of the internal apparmor
development tree (trunk branch). From svn repo version 6381.
2006-04-11 21:52:54 +00:00

41 lines
757 B
C

/* $Id: syscall_setpriority.c 6040 2006-01-11 00:15:48Z tonyj $ */
/*
* Copyright (C) 2002-2005 Novell/SUSE
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, version 2 of the
* License.
*/
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <sys/time.h>
#include <sys/resource.h>
int
main (int argc, char * argv[]) {
int rc;
int niceval;
if (argc == 2) {
niceval = strtol (argv[1], NULL, 10);
} else {
niceval = -5;
}
rc = setpriority(PRIO_PROCESS, 0, niceval);
if (rc != 0) {
perror ("FAIL: setpriority failed");
return errno;
}
printf ("PASS\n");
return 0;
}