X-Git-Url: http://git.code-monkey.de/?p=gps-watch.git;a=blobdiff_plain;f=test%2Flogger_test.rs;h=2bb507fc2d7070c4f3e6d5f7f77acfbbfff35171;hp=93568bb3f85ea00f7fe7bbfd4b032d448bbd27b0;hb=077126c5eb0039a250a32daf9f31d44d00aefceb;hpb=7ec91a770baf0bf3514cef995d310890630a7869 diff --git a/test/logger_test.rs b/test/logger_test.rs index 93568bb..2bb507f 100644 --- a/test/logger_test.rs +++ b/test/logger_test.rs @@ -80,10 +80,12 @@ impl Pipe { unsafe { extern { - fn pipe(pipefd: *mut i32) -> i32; + fn pipe2(pipefd: *mut i32, flags: i32) -> i32; } - pipe(pipe_fd.as_mut_ptr()); + const O_NONBLOCK : i32 = 0x800; + + pipe2(pipe_fd.as_mut_ptr(), O_NONBLOCK); } Pipe {