summaryrefslogtreecommitdiff
path: root/src/backend/postmaster/syslogger.c
Commit message (Expand)AuthorAgeFilesLines
* Fix unportable setvbuf() usage in initdb.Tom Lane2014-05-151-14/+3
* pgindent run for 9.4Bruce Momjian2014-05-061-9/+10
* Make it easy to detach completely from shared memory.Robert Haas2014-03-181-0/+2
* Revert dup2() checking in syslogger.cStephen Frost2014-01-281-8/+7
* Check dup2() results in sysloggerStephen Frost2014-01-261-2/+8
* Update copyright for 2014Bruce Momjian2014-01-071-1/+1
* Emit a log message if output is about to be redirected away from stderr.Tom Lane2013-08-131-2/+14
* pgindent run for release 9.3Bruce Momjian2013-05-291-3/+3
* Also fix rotation of csvlog on Windows.Heikki Linnakangas2013-01-241-4/+6
* Fix failure to rotate postmaster log file for size reasons on Windows.Tom Lane2013-01-231-0/+9
* Update copyrights for 2013Bruce Momjian2013-01-011-1/+1
* Fix syslogger to not fail when log_rotation_age exceeds 2^31 milliseconds.Tom Lane2012-11-181-2/+15
* Split up process latch initialization for more-fail-soft behavior.Tom Lane2012-10-141-0/+2
* Fix syslogger so that log_truncate_on_rotation works in the first rotation.Tom Lane2012-07-311-13/+30
* Unify calling conventions for postgres/postmaster sub-main functionsPeter Eisentraut2012-06-251-0/+1
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-101-2/+3
* Avoid unnecessary process wakeups in the log collector.Tom Lane2012-05-121-29/+66
* Fix syslogger's rotation disable/re-enable logic.Tom Lane2012-04-271-6/+20
* Fix syslogger to not lose log coherency under high load.Tom Lane2012-04-041-61/+71
* Remove now redundant pgpipe code.Andrew Dunstan2012-03-281-4/+4
* Avoid double close of file handle in syslogger on win32Magnus Hagander2012-02-211-2/+5
* Update copyright notices for year 2012.Bruce Momjian2012-01-011-1/+1
* Add some casts to try to silence most of the remaining format warnings on Min...Andrew Dunstan2011-04-281-1/+1
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-101-4/+4
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Use symbolic names not octal constants for file permission flags.Tom Lane2010-12-101-3/+3
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Add a log_file_mode GUC that allows control of the file permissions set onTom Lane2010-07-161-54/+51
* pgindent run for 9.0, second runBruce Momjian2010-07-061-5/+5
* On Windows, syslogger runs in two threads. The main thread processes configHeikki Linnakangas2010-04-161-33/+28
* Don't pass an invalid file handle to dup2(). That causes a crash onHeikki Linnakangas2010-04-011-4/+7
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Fix one more cast for _open_osfhandle().Magnus Hagander2010-01-021-2/+2
* Fix memory leak in syslogger: logfile_rotate() would leak a copy of theTom Lane2009-11-191-17/+33
* reenable -> re-enablePeter Eisentraut2009-11-051-3/+3
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-3/+4
* Fix Windows-specific race condition in syslogger. This could've beenHeikki Linnakangas2009-03-181-6/+7
* Don't append epoch to log_filename if no format specifier is given.Peter Eisentraut2009-02-241-13/+4
* Add a failure check for syslogger's use of _beginthreadex(), and removeTom Lane2009-02-031-6/+4
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* The macros NULL_DEV and DEVNULL were both used to work aroundPeter Eisentraut2008-12-111-2/+2
* Replace time_t with pg_time_t (same values, but always int64) in on-diskTom Lane2008-02-171-2/+2
* Fix two different copy-and-paste-os in CSV log rotation logic; one that led toTom Lane2008-01-251-18/+16
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-151-2/+2
* pgindent run for 8.3.Bruce Momjian2007-11-151-80/+85
* Fix erroneous Assert() in syslogger process start in EXEC_BACKEND case,Tom Lane2007-09-221-15/+10
* Cleanup items from csvlog changes, per ITAGAKI Takahiro.Andrew Dunstan2007-09-201-2/+10
* Suppress uninitialized-variable warning.Tom Lane2007-08-211-2/+2
* Provide for logfiles in machine readable CSV format. In consequence, renameAndrew Dunstan2007-08-191-61/+211