blob: d55168303c3150a2f9b1e4d667446f5aed38c163 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <sys/prctl.h>
#include <stdarg.h>
#include "syscall.h"
int prctl(int op, ...)
{
unsigned long x[4];
int i;
va_list ap;
va_start(ap, op);
for (i=0; i<4; i++) x[i] = va_arg(ap, unsigned long);
return syscall5(__NR_prctl, op, x[0], x[1], x[2], x[3]);
}
|