diff options
| author | Bruce Momjian | 1998-01-27 15:35:30 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1998-01-27 15:35:30 +0000 |
| commit | b4564a98fa6ba4c93f3d1fe49909eb170650a888 (patch) | |
| tree | 9afefa5f7e037afce45288dfef57380b4c358e14 /src/backend/postmaster | |
| parent | f49d41353d237715ff4b0954d894a1e42617296c (diff) | |
Deadlock ceallnup.
(void) change for aix and hp compilers.
protocol cleanup.
Diffstat (limited to 'src/backend/postmaster')
| -rw-r--r-- | src/backend/postmaster/postmaster.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 940047b1e67..8b25be20df9 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.71 1998/01/27 03:11:46 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.72 1998/01/27 15:34:43 momjian Exp $ * * NOTES * @@ -473,7 +473,7 @@ pmdaemonize(void) int i; if (fork()) - exit(0); + _exit(0); /* GH: If there's no setsid(), we hopefully don't need silent mode. * Until there's a better solution. */ |
