1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-10 17:42:29 +03:00

Last minute clean up for SunOS...

From: t-ishii@sra.co.jp
This commit is contained in:
Marc G. Fournier
1998-03-02 05:42:15 +00:00
parent 86d1343987
commit 6a9627e792
4 changed files with 12 additions and 9 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.19 1998/02/26 04:35:38 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.20 1998/03/02 05:41:55 scrappy Exp $
*
* NOTES
*
@@ -38,6 +38,7 @@
#include <sys/sem.h>
#include <sys/shm.h>
#include "utils/memutils.h"
#include "libpq/libpq.h"
#if defined(sparc_solaris)
#include <string.h>
@@ -136,6 +137,7 @@ exitpg(int code)
for (i = onexit_index - 1; i >= 0; --i)
(*onexit_list[i].function) (code, onexit_list[i].arg);
StreamDoUnlink();
exit(code);
}