Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Looking for a simple multiprocess-enabled logging module

by dave_the_m (Monsignor)
on Dec 20, 2004 at 15:47 UTC ( [id://416208]=note: print w/replies, xml ) Need Help??


in reply to Looking for a simple multiprocess-enabled logging module

If you open the file for appending, with autoflush enabled, then each print of a single string is guaranteed to be atomic (at least on sensible OSes).

Dave.

  • Comment on Re: Looking for a simple multiprocess-enabled logging module

Replies are listed 'Best First'.
Re^2: Looking for a simple multiprocess-enabled logging module
by ikegami (Patriarch) on Dec 20, 2004 at 16:17 UTC
    I thought that was only true if the string is smaller than a certain size?
      On a Unix and equivalent systems if the file you are writing to was opened with the O_APPEND flag, writes are guaranteed to be atomic regardless of size, unless the file is a pipe or FIFO, in which case atomicity is guaranteed only if the write size is PIPE_BUF or fewer bytes in length. So sayeth the Single Unix Specification on the write system call:
      If the O_APPEND flag of the file status flags is set, the file offset shall be set to the end of the file prior to each write and no intervening file modification operation shall occur between changing the file offset and the write operation....

      Write requests to a pipe or FIFO shall be handled in the same way as a regular file with the following exceptions: ... Write requests of PIPE_BUF bytes or less shall not be interleaved with data from other processes doing writes on the same pipe. Writes of greater than PIPE_BUF bytes may have data interleaved, on arbitrary boundaries, with writes by other processes, whether or not the O_NONBLOCK flag of the file status flags is set.

      On most Linux systems, PIPE_BUF is 4096.

      See the write(2) man page on your system and the Single Unix Specification for more.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://416208]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-04-24 12:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found