Changes between Initial Version and Version 1 of Ticket #2949, comment 5


Ignore:
Timestamp:
01/11/13 10:42:41 (12 years ago)
Author:
pavlinux
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2949, comment 5

    initial v1  
    11Replying to [comment:2 andrew_b]: 
    22> Could you make your patch not for Linux only? 
     3/* define somewhere */ 
    34{{{#!c 
    4 /* define somewhere */ 
    55#ifdef linux 
    66     #define mc_pipe(fd)  pipe2(fd, O_DIRECT) 
    77#else  
    8      #define mc_pipe(fd)  pipe2(fd) 
     8     #define mc_pipe(fd)  pipe(fd) 
    99#endif 
    1010}}}