Changeset 256
- Timestamp:
- Jun 9, 2009, 12:05:52 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/samba-3.3.x/source/printing/printing.c ¶
r206 r256 1403 1403 DEBUG(3,("start_background_queue: Starting background LPQ thread\n")); 1404 1404 1405 #ifndef __OS2__ 1405 1406 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 1406 1411 DEBUG(5,("start_background_queue: cannot create pipe. %s\n", strerror(errno) )); 1407 1412 exit(1);
Note:
See TracChangeset
for help on using the changeset viewer.