Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
5e98c401
Commit
5e98c401
authored
Jan 08, 1997
by
Bryan Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change the way ipc.h is included because sys/ipc.h on Ultrix is broken.
parent
e5ff0b93
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
18 deletions
+13
-18
src/backend/storage/ipc/ipc.c
src/backend/storage/ipc/ipc.c
+4
-8
src/backend/storage/ipc/ipci.c
src/backend/storage/ipc/ipci.c
+1
-2
src/backend/storage/ipc/sinval.c
src/backend/storage/ipc/sinval.c
+1
-2
src/backend/storage/lmgr/proc.c
src/backend/storage/lmgr/proc.c
+5
-4
src/backend/utils/init/postinit.c
src/backend/utils/init/postinit.c
+2
-2
No files found.
src/backend/storage/ipc/ipc.c
View file @
5e98c401
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.
9 1996/11/10 03:02:21 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.
10 1997/01/08 08:32:01 bryanh
Exp $
*
* NOTES
*
...
...
@@ -30,16 +30,12 @@
#include <string.h>
#include <errno.h>
/* XXX - the following dependency should be moved into the defaults.mk file */
#ifndef _IPC_
#define _IPC_
#include <sys/ipc.h>
#include <sys/sem.h>
#include <sys/shm.h>
#endif
#include "postgres.h"
#include "storage/ipc.h"
/* In Ultrix, sem.h and shm.h must be included AFTER ipc.h */
#include <sys/sem.h>
#include <sys/shm.h>
#include "utils/memutils.h"
#if defined(sparc_solaris)
...
...
src/backend/storage/ipc/ipci.c
View file @
5e98c401
...
...
@@ -7,13 +7,12 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.
4 1996/11/08 05:58:33 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.
5 1997/01/08 08:32:03 bryanh
Exp $
*
*-------------------------------------------------------------------------
*/
#include <string.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include "postgres.h"
...
...
src/backend/storage/ipc/sinval.c
View file @
5e98c401
...
...
@@ -7,14 +7,13 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinval.c,v 1.
5 1996/11/10 03:02:30 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinval.c,v 1.
6 1997/01/08 08:32:04 bryanh
Exp $
*
*-------------------------------------------------------------------------
*/
/* #define INVALIDDEBUG 1 */
#include <sys/types.h>
#include <sys/ipc.h>
#include "postgres.h"
...
...
src/backend/storage/lmgr/proc.c
View file @
5e98c401
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.1
2 1996/12/26 22:07:28 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.1
3 1997/01/08 08:32:17 bryanh
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -46,7 +46,7 @@
* This is so that we can support more backends. (system-wide semaphore
* sets run out pretty fast.) -ay 4/95
*
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.1
2 1996/12/26 22:07:28 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.1
3 1997/01/08 08:32:17 bryanh
Exp $
*/
#include <sys/time.h>
#ifndef WIN32
...
...
@@ -55,8 +55,6 @@
#include <string.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#if defined(sparc_solaris)
#include <sys/ipc.h>
...
...
@@ -70,6 +68,9 @@
#include "access/xact.h"
#include "utils/hsearch.h"
#include "storage/ipc.h"
/* In Ultrix, sem.h must be included after ipc.h */
#include <sys/sem.h>
#include "storage/buf.h"
#include "storage/lock.h"
#include "storage/lmgr.h"
...
...
src/backend/utils/init/postinit.c
View file @
5e98c401
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.
6 1996/11/12 06:46:42
bryanh Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.
7 1997/01/08 08:33:07
bryanh Exp $
*
* NOTES
* InitPostgres() is the function called from PostgresMain
...
...
@@ -32,13 +32,13 @@
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <math.h>
#include <unistd.h>
#include "postgres.h"
#include "version.h"
#include <storage/ipc.h>
#include <storage/backendid.h>
#include <storage/buf_internals.h>
#include <storage/smgr.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment