14 Oct
2005
14 Oct
'05
4:43 p.m.
Joe Maimon <jmaimon@ttec.com> wrote:
a mutex would probably be a good idea in vradlog for debug mode. I am testing something like that now.
Mutexes are expensive. Instead, write the data to a local buffer via snprintf, and call write(). It's still not perfect, but the odds of problems occuring are less. Alan DeKok.