Joe Maimon <jmaimon at 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.