Show
Ignore:
Timestamp:
03/18/04 15:03:18 (20 years ago)
Author:
jalet
Message:

Added fsync() calls

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/cupspykota

    r1405 r1410  
    2424# 
    2525# $Log$ 
     26# Revision 1.36  2004/03/18 14:03:18  jalet 
     27# Added fsync() calls 
     28# 
    2629# Revision 1.35  2004/03/16 12:05:01  jalet 
    2730# Small fix for new waitprinter.sh : when job was denied, would wait forever 
     
    363366                        if indata : 
    364367                            os.write(fd, indata)     
     368                            os.fsync(fd) 
    365369                            indata = "" 
    366370                        if endinput :     
     
    372376                        if outdata : 
    373377                            os.write(fd, outdata) 
     378                            os.fsync(fd) 
    374379                            outdata = "" 
    375380                        if endoutput :     
     
    379384                        if errdata : 
    380385                            os.write(fd, errdata) 
     386                            os.fsync(fd) 
    381387                            errdata = "" 
    382388                        if enderr :