Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Remove cvs keywords from all files. | Magnus Hagander | 2010-09-20 |
| | |||
* | 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list | Bruce Momjian | 2009-06-11 |
| | | | | provided by Andrew. | ||
* | Use CRITICAL_SECTION instead of Mutexes for thread-locking in libpq on | Magnus Hagander | 2008-05-21 |
| | | | | | | | Windows, for better performance. Per suggestion from Andrew Chernow, but not his patch since the underlying code was changed to deal with return values. | ||
* | Add $PostgreSQL$ markers to a lot of files that were missing them. | Andrew Dunstan | 2008-05-17 |
| | | | | | | | | | | This particular batch was just for *.c and *.h file. The changes were made with the following 2 commands: find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o \( -name '*.[ch]' \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | while read file ; do head -n 1 < $file | grep -q '^/\*' && echo $file; done | xargs -l sed -i -e '1s/^\// /' -e '1i/*\n * $PostgreSQL:$ \n *' find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o \( -name '*.[ch]' \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | xargs -l sed -i -e '1i/*\n * $PostgreSQL:$ \n */' | ||
* | Fix declarations of pthread functions, missed in recent commit. | Tom Lane | 2008-05-16 |
| | |||
* | Silence mingw compiler warning | Magnus Hagander | 2007-04-18 |
| | |||
* | Move pthread-win32.h to /port, modify bcc/msvc makefiles. | Bruce Momjian | 2006-07-10 |