summaryrefslogtreecommitdiff
path: root/src/port
Commit message (Expand)AuthorAgeFilesLines
...
* Fix compiler warningPeter Eisentraut2019-09-011-2/+2
* Improve what pg_strsignal prints if we haven't got strsignal(3).Tom Lane2019-08-271-8/+8
* Remove configure detection of crypt()Peter Eisentraut2019-08-211-1067/+0
* Avoid conflicts with library versions of inet_net_ntop() and friends.Tom Lane2019-08-182-7/+8
* Fix inconsistencies and typos in the tree, take 10Michael Paquier2019-08-131-2/+2
* Fix failures to ignore \r when reading Windows-style newlines.Tom Lane2019-07-251-3/+5
* Fix inconsistencies and typos in the treeMichael Paquier2019-07-161-1/+1
* Stamp HEAD as 13devel.Tom Lane2019-07-011-2/+2
* Fix more typos and inconsistencies in the treeMichael Paquier2019-06-171-1/+1
* Fix typos and inconsistencies in code commentsMichael Paquier2019-06-141-2/+2
* Phase 2 pgindent run for v12.Tom Lane2019-05-225-12/+12
* Initial pgindent run for v12.Tom Lane2019-05-223-9/+10
* ANSI-ify a few straggler K&R-style function definitions.Tom Lane2019-05-182-35/+18
* Assert that pgwin32_signal_initialize() has been called early enough.Noah Misch2019-04-031-0/+3
* Fix error handling of readdir() port implementation on first file lookupMichael Paquier2019-03-041-6/+8
* Make use of compiler builtins and/or assembly for CLZ, CTZ, POPCNT.Tom Lane2019-02-152-1/+322
* Cygwin and Mingw floating-point fixes.Andrew Gierth2019-02-161-1/+9
* Revert attempts to use POPCNT etc instructionsAlvaro Herrera2019-02-153-269/+1
* Fix compiler builtin usage in new pg_bitutils.cAlvaro Herrera2019-02-153-340/+90
* Fix portability issues in pg_bitutilsAlvaro Herrera2019-02-131-38/+35
* Add -mpopcnt to all compiles of pg_bitutils.cAlvaro Herrera2019-02-131-0/+2
* Add basic support for using the POPCNT and SSE4.2s LZCNT opcodesAlvaro Herrera2019-02-132-1/+520
* Use strtof() and not strtod() for float4 input.Andrew Gierth2019-02-131-0/+123
* More unconstify usePeter Eisentraut2019-02-131-3/+3
* Use our own getopt() on OpenBSD.Tom Lane2019-01-181-6/+5
* Update copyright for 2019Bruce Momjian2019-01-0245-45/+45
* Remove configure switch --disable-strong-randomMichael Paquier2019-01-011-5/+1
* Use pg_strong_random() to select each server process's random seed.Tom Lane2018-12-291-6/+6
* Marginal performance hacking in erand48.c.Tom Lane2018-12-281-38/+33
* Fix latent problem with pg_jrand48().Tom Lane2018-12-281-6/+36
* Drop support for getting signal descriptions from sys_siglist[].Tom Lane2018-12-171-12/+9
* Modernize our code for looking up descriptive strings for Unix signals.Tom Lane2018-12-162-1/+68
* Improve our response to invalid format strings, and detect more cases.Tom Lane2018-12-061-4/+9
* Integrate recovery.conf into postgresql.confPeter Eisentraut2018-11-251-1/+1
* Disable MSVC warning caused by recent snprintf.c changesAndrew Dunstan2018-11-101-0/+8
* Provide pg_pread() and pg_pwrite() for random I/O.Thomas Munro2018-11-072-0/+110
* Apply unconstify() in more placesPeter Eisentraut2018-10-251-1/+1
* Make float exponent output on Windows look the same as elsewhere.Tom Lane2018-10-121-0/+27
* Fix omissions in snprintf.c's coverage of standard *printf functions.Tom Lane2018-10-081-1/+9
* Improve snprintf.c's handling of NaN, Infinity, and minus zero.Tom Lane2018-10-081-28/+136
* Replace uint64 use introduced in 4868e446859 in light of 595a0eab7f42.Andres Freund2018-10-031-2/+2
* Ensure that snprintf.c's fmtint() doesn't overflow when printing INT64_MIN.Andres Freund2018-10-031-3/+4
* Rationalize snprintf.c's handling of "ll" formats.Tom Lane2018-10-031-10/+10
* Provide fast path in snprintf.c for conversion specs that are just "%s".Tom Lane2018-10-031-0/+13
* Make assorted performance improvements in snprintf.c.Tom Lane2018-10-031-271/+424
* Set snprintf.c's maximum number of NL arguments to be 31.Tom Lane2018-10-021-6/+10
* Build src/common files as a library with -fPIC.Tom Lane2018-09-281-2/+3
* Build src/port files as a library with -fPIC, and use that in libpq.Tom Lane2018-09-272-12/+44
* Implement %m in src/port/snprintf.c, and teach elog.c to rely on that.Tom Lane2018-09-261-1/+27
* Always use our own versions of *printf().Tom Lane2018-09-262-2/+3