Help for this page

Select Code to Download


  1. or download this
    The file is opened  in  append  mode.  Before  each
    write, the file pointer is positioned at the end of
    ...
    is  because  NFS  does  not  support appending to a
    file, so the client  kernel  has  to  simulate  it,
    which can't be done without a race condition
    
  2. or download this
    Opening a file with append mode (a as the first character in
    the  mode argument) causes all subsequent writes to the file
    ...
    to  the file without fear of destroying output being written
    by the other.  The output from the  two  processes  will  be
    intermixed in the file in the order in which it is written.