Changes between Initial Version and Version 1 of Ticket #2949, comment 5
- Timestamp:
- 01/11/13 10:42:41 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2949, comment 5
initial v1 1 1 Replying to [comment:2 andrew_b]: 2 2 > Could you make your patch not for Linux only? 3 /* define somewhere */ 3 4 {{{#!c 4 /* define somewhere */5 5 #ifdef linux 6 6 #define mc_pipe(fd) pipe2(fd, O_DIRECT) 7 7 #else 8 #define mc_pipe(fd) pipe 2(fd)8 #define mc_pipe(fd) pipe(fd) 9 9 #endif 10 10 }}}