1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-06 07:49:08 +03:00

Added needed include file.

This commit is contained in:
Bruce Momjian
1996-10-31 05:58:01 +00:00
parent 7a93da98af
commit 3d7fe6c97c
14 changed files with 34 additions and 13 deletions

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: ipc.h,v 1.4 1996/10/19 06:27:12 scrappy Exp $
* $Id: ipc.h,v 1.5 1996/10/31 05:57:40 momjian Exp $
*
* NOTES
* This file is very architecture-specific. This stuff should actually
@@ -23,6 +23,8 @@
#include <sys/types.h>
#include "postgres.h"
/*
* Many architectures have support for user-level spinlocks (i.e., an
* atomic test-and-set instruction). However, we have only written

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: proc.h,v 1.1 1996/08/28 01:58:24 scrappy Exp $
* $Id: proc.h,v 1.2 1996/10/31 05:57:45 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -16,6 +16,7 @@
#include "storage/ipc.h"
#include "storage/lock.h"
#ifndef WIN32
#include <sys/ipc.h>
#include <sys/sem.h>
#else
/* This is because WIN32 already defines PROC */