1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +03:00
Files
postgres/src
Heikki Linnakangas 144399a331 On Windows, syslogger runs in two threads. The main thread processes config
reload and rotation signals, and a helper thread reads messages from the
pipe and writes them to the log file. However, server code isn't generally
thread-safe, so if both try to do e.g palloc()/pfree() at the same time,
bad things will happen. To fix that, use a critical section (which is like
a mutex) to enforce that only one the threads are active at a time.
2010-04-16 09:52:01 +00:00
..
2010-03-12 03:40:31 +00:00
2010-03-12 03:40:31 +00:00
2010-04-09 11:49:58 +00:00
2006-07-10 15:50:02 +00:00