Lee Kindness writes: > Guys, take a look at what was done in libpq to make it > thread-safe... No locks! No overheaded - just using "proper" reentrant > functions...
There is a difference between being reentrant and being thread-safe. Making libpq reentrant is relatively easy if you use the right functions. But we have no guarantee that it will be thread-safe by default, because some platforms require special flags to make standard library functions thread-safe. -- Peter Eisentraut [EMAIL PROTECTED] ---------------------------(end of broadcast)--------------------------- TIP 8: explain analyze is your friend