Changeset 454 for trunk/server/source3/printing/printing.c
- Timestamp:
- Jun 4, 2010, 3:11:43 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/printing/printing.c
r414 r454 1431 1431 DEBUG(3,("start_background_queue: Starting background LPQ thread\n")); 1432 1432 1433 #ifndef __OS2__ 1433 1434 if (pipe(pause_pipe) == -1) { 1435 #else // on OS2 we have no select() on pipes, so we use socketpair() instead 1436 if (socketpair(AF_UNIX, SOCK_STREAM,0, pause_pipe) < 0) { 1437 #endif 1434 1438 DEBUG(5,("start_background_queue: cannot create pipe. %s\n", strerror(errno) )); 1435 1439 exit(1);
Note:
See TracChangeset
for help on using the changeset viewer.