tests: Conditionally add prctl to test process

prctl was already bypassed on Cygwin systems. This extends to
non-Linux systems such as kFreeBSD and Hurd.

References:
 https://bugs.debian.org/816237
This commit is contained in:
Craig Small
2016-04-17 09:09:41 +10:00
parent dad56cc954
commit aa9bd38d0a
2 changed files with 3 additions and 2 deletions

View File

@ -21,7 +21,7 @@
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#ifndef __CYGWIN__
#ifdef __linux__
#include <sys/prctl.h>
#endif
#include "c.h"
@ -80,7 +80,7 @@ int main(int argc, char *argv[])
sigaction(SIGUSR1, &signal_action, NULL);
sigaction(SIGUSR2, &signal_action, NULL);
#ifndef __CYGWIN__
#ifdef __linux__
/* set process name */
prctl(PR_SET_NAME, MY_NAME, NULL, NULL, NULL);
#endif