summaryrefslogtreecommitdiff
path: root/src/port
AgeCommit message (Expand)Author
2019-05-19ANSI-ify a few straggler K&R-style function definitions.Tom Lane
2019-04-04Assert that pgwin32_signal_initialize() has been called early enough.Noah Misch
2019-03-04Fix error handling of readdir() port implementation on first file lookupMichael Paquier
2019-02-16Make use of compiler builtins and/or assembly for CLZ, CTZ, POPCNT.Tom Lane
2019-02-16Cygwin and Mingw floating-point fixes.Andrew Gierth
2019-02-15Revert attempts to use POPCNT etc instructionsAlvaro Herrera
2019-02-15Fix compiler builtin usage in new pg_bitutils.cAlvaro Herrera
2019-02-13Fix portability issues in pg_bitutilsAlvaro Herrera
2019-02-13Add -mpopcnt to all compiles of pg_bitutils.cAlvaro Herrera
2019-02-13Add basic support for using the POPCNT and SSE4.2s LZCNT opcodesAlvaro Herrera
2019-02-13Use strtof() and not strtod() for float4 input.Andrew Gierth
2019-02-13More unconstify usePeter Eisentraut
2019-01-18Use our own getopt() on OpenBSD.Tom Lane
2019-01-02Update copyright for 2019Bruce Momjian
2019-01-01Remove configure switch --disable-strong-randomMichael Paquier
2018-12-29Use pg_strong_random() to select each server process's random seed.Tom Lane
2018-12-28Marginal performance hacking in erand48.c.Tom Lane
2018-12-28Fix latent problem with pg_jrand48().Tom Lane
2018-12-17Drop support for getting signal descriptions from sys_siglist[].Tom Lane
2018-12-17Modernize our code for looking up descriptive strings for Unix signals.Tom Lane
2018-12-06Improve our response to invalid format strings, and detect more cases.Tom Lane
2018-11-25Integrate recovery.conf into postgresql.confPeter Eisentraut
2018-11-11Disable MSVC warning caused by recent snprintf.c changesAndrew Dunstan
2018-11-06Provide pg_pread() and pg_pwrite() for random I/O.Thomas Munro
2018-10-25Apply unconstify() in more placesPeter Eisentraut
2018-10-12Make float exponent output on Windows look the same as elsewhere.Tom Lane
2018-10-08Fix omissions in snprintf.c's coverage of standard *printf functions.Tom Lane
2018-10-08Improve snprintf.c's handling of NaN, Infinity, and minus zero.Tom Lane
2018-10-03Replace uint64 use introduced in 4868e446859 in light of 595a0eab7f42.Andres Freund
2018-10-03Ensure that snprintf.c's fmtint() doesn't overflow when printing INT64_MIN.Andres Freund
2018-10-03Rationalize snprintf.c's handling of "ll" formats.Tom Lane
2018-10-03Provide fast path in snprintf.c for conversion specs that are just "%s".Tom Lane
2018-10-03Make assorted performance improvements in snprintf.c.Tom Lane
2018-10-02Set snprintf.c's maximum number of NL arguments to be 31.Tom Lane
2018-09-28Build src/common files as a library with -fPIC.Tom Lane
2018-09-27Build src/port files as a library with -fPIC, and use that in libpq.Tom Lane
2018-09-26Implement %m in src/port/snprintf.c, and teach elog.c to rely on that.Tom Lane
2018-09-26Always use our own versions of *printf().Tom Lane
2018-09-26Incorporate strerror_r() into src/port/snprintf.c, too.Tom Lane
2018-09-26Convert elog.c's useful_strerror() into a globally-used strerror wrapper.Tom Lane
2018-09-19Enforce translation mode for Windows frontends to text with open/fopenMichael Paquier
2018-09-06Fix inconsistent argument naming.Tom Lane
2018-09-06Refactor dlopen() supportPeter Eisentraut
2018-08-15Clean up assorted misuses of snprintf()'s result value.Tom Lane
2018-08-15Make snprintf.c follow the C99 standard for snprintf's result value.Tom Lane
2018-07-20Guard against rare RAND_bytes() failures in pg_strong_random().Dean Rasheed
2018-07-11Rethink how to get float.h in old Windows API for isnan/isinfAlvaro Herrera
2018-06-30Stamp HEAD as 12develAndrew Dunstan
2018-05-23Fix simple_prompt() to disable echo on Windows when stdin != terminal.Tom Lane
2018-05-14Fix file paths in commentsMagnus Hagander