| Commit message (Expand) | Author | Age | Files | Lines |
| * | Tiny assorted fixes: correct a typo in a comment in vacuumlazy.c, remove | Neil Conway | 2004-04-25 | 1 | -3/+1 |
| * | Make LocalRefCount and PrivateRefCount arrays of int32, rather than long. | Neil Conway | 2004-04-22 | 3 | -33/+43 |
| * | Another round of code cleanup on bufmgr. Use BM_VALID flag to keep track | Tom Lane | 2004-04-21 | 4 | -408/+310 |
| * | Code review for ARC patch. Eliminate static variables, improve handling | Tom Lane | 2004-04-19 | 6 | -688/+682 |
| * | * Most changes are to fix warnings issued when compiling win32 | Bruce Momjian | 2004-04-19 | 1 | -2/+2 |
| * | When changing select() calls for delays into pg_usleep(), two comments | Bruce Momjian | 2004-03-23 | 1 | -3/+3 |
| * | * postmaster.c: cleanup pmdaemonize under win32; missed failure message | Bruce Momjian | 2004-03-15 | 1 | -2/+2 |
| * | For application to HEAD, following community review. | Bruce Momjian | 2004-02-25 | 1 | -74/+57 |
| * | Replace opendir/closedir calls throughout the backend with AllocateDir | Tom Lane | 2004-02-23 | 1 | -17/+109 |
| * | Do a direct probe during postmaster startup to determine the maximum | Tom Lane | 2004-02-23 | 1 | -87/+144 |
| * | Here is a patch that implements setitimer() on win32. With this patch | Bruce Momjian | 2004-02-18 | 1 | -14/+1 |
| * | Avoid delaying postmaster shutdown by up to 10 seconds on platforms | Tom Lane | 2004-02-12 | 1 | -2/+18 |
| * | Fixed bug where FlushRelationBuffers() did call StrategyInvalidateBuffer() | Jan Wieck | 2004-02-12 | 3 | -117/+32 |
| * | Commit the reasonably uncontroversial parts of J.R. Nield's PITR patch, to | Tom Lane | 2004-02-11 | 2 | -2/+160 |
| * | Centralize implementation of delay code by creating a pg_usleep() | Tom Lane | 2004-02-10 | 2 | -6/+4 |
| * | Restructure smgr API as per recent proposal. smgr no longer depends on | Tom Lane | 2004-02-10 | 9 | -1424/+560 |
| * | Win32 signals cleanup. Patch by Magnus Hagander, with input from Claudio | Neil Conway | 2004-02-08 | 2 | -6/+4 |
| * | Cost based vacuum delay feature. | Jan Wieck | 2004-02-06 | 2 | -2/+17 |
| * | Backing out the background writer sync() option. | Jan Wieck | 2004-02-04 | 1 | -50/+1 |
| * | Remove sleep() and use single PG_SLEEP call for Win32 signal handling | Bruce Momjian | 2004-01-30 | 1 | -5/+2 |
| * | Here's the latest win32 signals code, this time in the form of a patch | Bruce Momjian | 2004-01-27 | 2 | -4/+6 |
| * | [all] Removed call to getppid in SendPostmasterSignal, replacing with a | Bruce Momjian | 2004-01-26 | 2 | -4/+14 |
| * | Back out win32 patch so we can apply it separately. | Bruce Momjian | 2004-01-26 | 2 | -14/+4 |
| * | Attached is a patch that fixes some trivial typos and alignment. Please | Bruce Momjian | 2004-01-26 | 2 | -4/+14 |
| * | Ensure that close() and fclose() are checked for errors, at least in | Tom Lane | 2004-01-26 | 2 | -7/+18 |
| * | Added GUC variable bgwriter_flush_method controlling the action | Jan Wieck | 2004-01-24 | 1 | -1/+50 |
| * | Adjusted calculation of shared memory requirements to new | Jan Wieck | 2004-01-15 | 2 | -45/+10 |
| * | Drops in the CreateProcess calls for Win32 (essentially wrapping up the | Bruce Momjian | 2004-01-11 | 3 | -11/+11 |
| * | Change PG_DELAY from msec to usec and use it consistenly rather than | Bruce Momjian | 2004-01-09 | 2 | -10/+5 |
| * | More janitorial work: remove the explicit casting of NULL literals to a | Neil Conway | 2004-01-07 | 5 | -44/+44 |
| * | Code cleanup, mostly in the smgr: | Neil Conway | 2004-01-06 | 2 | -67/+40 |
| * | ShmemInitHash forgot to specify HASH_ALLOC flag bit in its hash_create | Tom Lane | 2003-12-30 | 1 | -2/+2 |
| * | Improve spinlock code for recent x86 processors: insert a PAUSE | Tom Lane | 2003-12-27 | 1 | -1/+5 |
| * | Continued rearrangement to permit pgstat + BootstrapMain processes to be | Bruce Momjian | 2003-12-25 | 1 | -19/+20 |
| * | Use inlined TAS() on PA-RISC, if we are compiling with gcc. | Tom Lane | 2003-12-23 | 1 | -7/+11 |
| * | Mop-up for HAS_TEST_AND_SET refactoring. Un-break two or three platforms | Tom Lane | 2003-12-23 | 2 | -8/+8 |
| * | Move slock_t typdefs into s_lock.h from include/port files for | Bruce Momjian | 2003-12-23 | 2 | -3/+6 |
| * | Remove NEED_I386_TAS_ASM and just test for compiler defines. | Bruce Momjian | 2003-12-23 | 1 | -4/+1 |
| * | This applied patch remove NEED_SPARC_TAS_ASM and instead uses __sparc || | Bruce Momjian | 2003-12-22 | 1 | -3/+3 |
| * | [ This description should have been on the earlier fork/exec | Bruce Momjian | 2003-12-21 | 1 | -4/+2 |
| * | The recent DUMMY_PROCS patch broke accounting for the number of semaphores | Tom Lane | 2003-12-21 | 1 | -3/+3 |
| * | bufmgr.c failed to compile on Darwin, because it didn't include | Tom Lane | 2003-12-20 | 1 | -2/+3 |
| * | This patch is the next step towards (re)allowing fork/exec. | Bruce Momjian | 2003-12-20 | 10 | -104/+174 |
| * | I posted some bufmgr cleanup a few weeks ago, but it conflicted with | Neil Conway | 2003-12-14 | 3 | -226/+23 |
| * | This patch properly sets the prototype for the on_shmem_exit and | Peter Eisentraut | 2003-12-12 | 5 | -17/+17 |
| * | Try to reduce confusion about what is a lock method identifier, a lock | Bruce Momjian | 2003-12-01 | 5 | -146/+119 |
| * | Force zero_damaged_pages to be effectively ON during recovery from WAL, | Tom Lane | 2003-12-01 | 1 | -2/+8 |
| * | $Header: -> $PostgreSQL Changes ... | PostgreSQL Daemon | 2003-11-29 | 42 | -42/+42 |
| * | Conditionalize variable that is only used conditionally, to avoid warning. | Peter Eisentraut | 2003-11-27 | 1 | -2/+4 |
| * | Second try at fixing no-room-to-move-down PANIC in compact_fsm_storage. | Tom Lane | 2003-11-26 | 1 | -17/+47 |