source: azure_iot_hub/trunk/musl-1.1.18/src/linux/prctl.c@ 388

Last change on this file since 388 was 388, checked in by coas-nagasima, 5 years ago

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-csrc
File size: 277 bytes
Line 
1#include <sys/prctl.h>
2#include <stdarg.h>
3#include "syscall.h"
4
5int prctl(int op, ...)
6{
7 unsigned long x[4];
8 int i;
9 va_list ap;
10 va_start(ap, op);
11 for (i=0; i<4; i++) x[i] = va_arg(ap, unsigned long);
12 va_end(ap);
13 return syscall(SYS_prctl, op, x[0], x[1], x[2], x[3]);
14}
Note: See TracBrowser for help on using the repository browser.