Ignore:
Timestamp:
Apr 23, 2012, 8:01:39 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server 3.3: made it high-mem aware

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.3.x/source/printing/printing.c

    r578 r699  
    1919   along with this program.  If not, see <http://www.gnu.org/licenses/>.
    2020*/
     21#ifdef __OS2__
     22#define pipe(A) os2_pipe(A)
     23#endif
    2124
    2225#include "includes.h"
     
    14031406        DEBUG(3,("start_background_queue: Starting background LPQ thread\n"));
    14041407
    1405 #ifndef __OS2__
    14061408        if (pipe(pause_pipe) == -1) {
    1407 #else
    1408         // on OS2 we have no select() on pipes, so we use socketpair() instead
    1409         if (socketpair(AF_UNIX, SOCK_STREAM,0, pause_pipe) < 0) {
    1410 #endif
    14111409                DEBUG(5,("start_background_queue: cannot create pipe. %s\n", strerror(errno) ));
    14121410                exit(1);
Note: See TracChangeset for help on using the changeset viewer.