From 46785776c42143af8f5433bb580ff13f2a9f65e1 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 8 Aug 2003 21:42:59 +0000 Subject: Another pgindent run with updated typedefs. --- src/backend/access/transam/slru.c | 8 ++++---- src/backend/access/transam/xact.c | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'src/backend/access/transam') diff --git a/src/backend/access/transam/slru.c b/src/backend/access/transam/slru.c index 95e13e72fdd..3f0d387d447 100644 --- a/src/backend/access/transam/slru.c +++ b/src/backend/access/transam/slru.c @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Header: /cvsroot/pgsql/src/backend/access/transam/slru.c,v 1.5 2003/08/08 14:39:45 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/transam/slru.c,v 1.6 2003/08/08 21:41:27 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -93,7 +93,7 @@ typedef enum SLRU_PAGE_CLEAN, /* page is valid and not dirty */ SLRU_PAGE_DIRTY, /* page is valid but needs write */ SLRU_PAGE_WRITE_IN_PROGRESS /* page is being written out */ -} SlruPageStatus; +} SlruPageStatus; /* * Shared-memory state @@ -117,7 +117,7 @@ typedef struct SlruSharedData * swapping out the latest page. */ int latest_page_number; -} SlruSharedData; +} SlruSharedData; typedef SlruSharedData *SlruShared; @@ -145,7 +145,7 @@ typedef enum SLRU_SEEK_FAILED, SLRU_READ_FAILED, SLRU_WRITE_FAILED -} SlruErrorCause; +} SlruErrorCause; static SlruErrorCause slru_errcause; static int slru_errno; diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index a85337100b7..e632ae9e1f4 100644 --- a/src/backend/access/transam/xact.c +++ b/src/backend/access/transam/xact.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.151 2003/08/04 02:39:57 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.152 2003/08/08 21:41:28 momjian Exp $ * * NOTES * Transaction aborts can now occur two ways: @@ -954,9 +954,9 @@ CommitTransaction(void) * * The ordering of operations is not entirely random. The idea is: * release resources visible to other backends (eg, files, buffer - * pins); then release locks; then release backend-local resources. - * We want to release locks at the point where any backend waiting for - * us will see our transaction as being fully cleaned up. + * pins); then release locks; then release backend-local resources. We + * want to release locks at the point where any backend waiting for us + * will see our transaction as being fully cleaned up. */ smgrDoPendingDeletes(true); -- cgit v1.2.3