- Timestamp:
- 03/18/04 15:03:18 (21 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/cupspykota
r1405 r1410 24 24 # 25 25 # $Log$ 26 # Revision 1.36 2004/03/18 14:03:18 jalet 27 # Added fsync() calls 28 # 26 29 # Revision 1.35 2004/03/16 12:05:01 jalet 27 30 # Small fix for new waitprinter.sh : when job was denied, would wait forever … … 363 366 if indata : 364 367 os.write(fd, indata) 368 os.fsync(fd) 365 369 indata = "" 366 370 if endinput : … … 372 376 if outdata : 373 377 os.write(fd, outdata) 378 os.fsync(fd) 374 379 outdata = "" 375 380 if endoutput : … … 379 384 if errdata : 380 385 os.write(fd, errdata) 386 os.fsync(fd) 381 387 errdata = "" 382 388 if enderr :