Changeset 699 for branches/samba-3.3.x/source/printing/printing.c
- Timestamp:
- Apr 23, 2012, 8:01:39 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/printing/printing.c
r578 r699 19 19 along with this program. If not, see <http://www.gnu.org/licenses/>. 20 20 */ 21 #ifdef __OS2__ 22 #define pipe(A) os2_pipe(A) 23 #endif 21 24 22 25 #include "includes.h" … … 1403 1406 DEBUG(3,("start_background_queue: Starting background LPQ thread\n")); 1404 1407 1405 #ifndef __OS2__1406 1408 if (pipe(pause_pipe) == -1) { 1407 #else1408 // on OS2 we have no select() on pipes, so we use socketpair() instead1409 if (socketpair(AF_UNIX, SOCK_STREAM,0, pause_pipe) < 0) {1410 #endif1411 1409 DEBUG(5,("start_background_queue: cannot create pipe. %s\n", strerror(errno) )); 1412 1410 exit(1);
Note:
See TracChangeset
for help on using the changeset viewer.