| Index: src/nonsfi/linux/linux_sys_private.c
|
| diff --git a/src/nonsfi/linux/linux_sys_private.c b/src/nonsfi/linux/linux_sys_private.c
|
| index d7e0b976d42eed03d8faadc6b69be88dae625e76..ec27047ffe88df89bbfc12ad3a3b75fda5fff1b5 100644
|
| --- a/src/nonsfi/linux/linux_sys_private.c
|
| +++ b/src/nonsfi/linux/linux_sys_private.c
|
| @@ -353,6 +353,10 @@ int fcntl(int fd, int cmd, ...) {
|
| return -1;
|
| }
|
|
|
| +int getpid(void) {
|
| + return errno_value_call(linux_syscall0(__NR_getpid));
|
| +}
|
| +
|
| int fork(void) {
|
| /* Set SIGCHLD as flag so we can wait. */
|
| return errno_value_call(
|
|
|