David George <david(at)logical(dot)net> writes:
> Does libpq support multithreaded frontend apps?
libpq is thread-ignorant. You can use it in a multithreaded app,
but it's up to you to ensure that no two threads try to operate on
the same PQconn object at the same time.
regards, tom lane