the files that need them. Per trouble report from Teodor.
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.69 2001/09/29 04:02:23 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.70 2001/10/01 18:16:26 tgl Exp $
*
* NOTES
*
*/
#include "postgres.h"
-#include
-#include
#include
#include
#include
+#include
#include "storage/ipc.h"
/* In Ultrix, sem.h and shm.h must be included AFTER ipc.h */
#include
#endif
-#if defined(solaris_sparc)
-#include
-#endif
-
#if defined(__darwin__)
#include "port/darwin/sem.h"
#endif
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.111 2001/09/30 00:45:47 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.112 2001/10/01 18:16:32 tgl Exp $
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include
-#include
-#include
#include
-#include
+#include
+#include
-#if defined(solaris_sparc) || defined(__CYGWIN__)
-#include
+#include "storage/ipc.h"
+/* In Ultrix, sem.h and shm.h must be included AFTER ipc.h */
+#ifdef HAVE_SYS_SEM_H
#include
#endif
-#include "miscadmin.h"
-
#if defined(__darwin__)
#include "port/darwin/sem.h"
#endif
-/* In Ultrix and QNX, sem.h must be included after ipc.h */
-#ifdef HAVE_SYS_SEM_H
-#include
-#endif
-
+#include "miscadmin.h"
#include "access/xact.h"
#include "storage/proc.h"
#include "storage/sinval.h"
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/spin.c,v 1.3 2001/10/01 17:52:34 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/spin.c,v 1.4 2001/10/01 18:16:35 tgl Exp $
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include
+
+#include "storage/ipc.h"
+/* In Ultrix, sem.h and shm.h must be included AFTER ipc.h */
#ifdef HAVE_SYS_SEM_H
-#include
#include
#endif
+#if defined(__darwin__)
+#include "port/darwin/sem.h"
+#endif
+
#include "storage/lwlock.h"
#include "storage/proc.h"
#include "storage/spin.h"