diff options
Diffstat (limited to 'lib/posix')
-rw-r--r-- | lib/posix/linux.nim | 2 | ||||
-rw-r--r-- | lib/posix/posix_other.nim | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lib/posix/linux.nim b/lib/posix/linux.nim index 01d5e57de..8786ab535 100644 --- a/lib/posix/linux.nim +++ b/lib/posix/linux.nim @@ -26,3 +26,5 @@ const proc clone*(fn: pointer; child_stack: pointer; flags: cint; arg: pointer; ptid: ptr Pid; tls: pointer; ctid: ptr Pid): cint {.importc, header: "<sched.h>".} + +proc pipe2*(a: array[0..1, cint], flags: cint): cint {.importc, header: "<unistd.h>".} \ No newline at end of file diff --git a/lib/posix/posix_other.nim b/lib/posix/posix_other.nim index 69f6acfb8..7321889a8 100644 --- a/lib/posix/posix_other.nim +++ b/lib/posix/posix_other.nim @@ -146,7 +146,7 @@ type Mode* {.importc: "mode_t", header: "<sys/types.h>".} = cint Nlink* {.importc: "nlink_t", header: "<sys/types.h>".} = int Off* {.importc: "off_t", header: "<sys/types.h>".} = int64 - Pid* {.importc: "pid_t", header: "<sys/types.h>".} = int + Pid* {.importc: "pid_t", header: "<sys/types.h>".} = int32 Pthread_attr* {.importc: "pthread_attr_t", header: "<sys/types.h>".} = int Pthread_barrier* {.importc: "pthread_barrier_t", header: "<sys/types.h>".} = int |