]> granicus.if.org Git - postgresql/commitdiff
Minor stylistic corrections.
authorRobert Haas <rhaas@postgresql.org>
Mon, 1 Aug 2011 12:24:45 +0000 (08:24 -0400)
committerRobert Haas <rhaas@postgresql.org>
Mon, 1 Aug 2011 12:24:45 +0000 (08:24 -0400)
src/backend/storage/ipc/sinvaladt.c

index 1ecf4bdab9f620707365986b2ff524612be1de8e..47f1a6156091fbd0e6af9f65f5e45eced901fd6e 100644 (file)
@@ -471,7 +471,7 @@ SIInsertDataEntries(const SharedInvalidationMessage *data, int n)
                for (i = 0; i < segP->lastBackend; i++)
                {
                        ProcState  *stateP = &segP->procState[i];
-                       stateP->hasMessages = TRUE;
+                       stateP->hasMessages = true;
                }
 
                LWLockRelease(SInvalWriteLock);
@@ -542,7 +542,7 @@ SIGetDataEntries(SharedInvalidationMessage *data, int datasize)
         * Note that, if we don't end up reading all of the messages, we had
         * better be certain to reset this flag before exiting!
         */
-       stateP->hasMessages = FALSE;
+       stateP->hasMessages = false;
 
        /* Fetch current value of maxMsgNum using spinlock */
        {
@@ -587,13 +587,13 @@ SIGetDataEntries(SharedInvalidationMessage *data, int datasize)
         * If we have caught up completely, reset our "signaled" flag so that
         * we'll get another signal if we fall behind again.
         *
-        * If we haven't catch up completely, reset the hasMessages flag so that
+        * If we haven't caught up completely, reset the hasMessages flag so that
         * we see the remaining messages next time.
         */
        if (stateP->nextMsgNum >= max)
                stateP->signaled = false;
        else
-               stateP->hasMessages = TRUE;
+               stateP->hasMessages = true;
 
        LWLockRelease(SInvalReadLock);
        return n;