diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-10-25 05:50:21 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-10-25 05:50:21 +0000 |
commit | b81844b1738c584d92330a5ccd0fbd8b603d2886 (patch) | |
tree | 4fae0d4cd26048177fc5cd1a2dd91abc99ba0f99 /src/include/storage/proc.h | |
parent | 59da2105d8e6d95345b3b942a2e2aba8cead4838 (diff) | |
download | postgresql-b81844b1738c584d92330a5ccd0fbd8b603d2886.tar.gz postgresql-b81844b1738c584d92330a5ccd0fbd8b603d2886.zip |
pgindent run on all C files. Java run to follow. initdb/regression
tests pass.
Diffstat (limited to 'src/include/storage/proc.h')
-rw-r--r-- | src/include/storage/proc.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index fe5f255badb..4be08aa3d27 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: proc.h,v 1.50 2001/09/30 00:45:48 momjian Exp $ + * $Id: proc.h,v 1.51 2001/10/25 05:50:10 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -103,9 +103,10 @@ typedef struct /* info about a single set of per-process semaphores */ IpcSemaphoreId procSemId; int32 freeSemMap; + /* - * In freeSemMap, bit i is set if the i'th semaphore of this sema - * set is allocated to a process. (i counts from 0 at the LSB) + * In freeSemMap, bit i is set if the i'th semaphore of this sema set + * is allocated to a process. (i counts from 0 at the LSB) */ } SEM_MAP_ENTRY; @@ -116,11 +117,12 @@ typedef struct PROC_HDR /* Info about semaphore sets used for per-process semaphores */ int semMapEntries; + /* - * VARIABLE LENGTH ARRAY: actual length is semMapEntries. - * THIS MUST BE LAST IN THE STRUCT DECLARATION. + * VARIABLE LENGTH ARRAY: actual length is semMapEntries. THIS MUST BE + * LAST IN THE STRUCT DECLARATION. */ - SEM_MAP_ENTRY procSemMap[1]; + SEM_MAP_ENTRY procSemMap[1]; } PROC_HDR; @@ -150,5 +152,4 @@ extern void ProcSendSignal(BackendId procId); extern bool enable_sigalrm_interrupt(int delayms); extern bool disable_sigalrm_interrupt(void); - #endif /* PROC_H */ |