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
8ed5918f
Commit
8ed5918f
authored
Jun 19, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Solaris cleanup.
parent
da1ac9ad
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
17 additions
and
17 deletions
+17
-17
src/backend/port/dynloader/solaris_i386.c
src/backend/port/dynloader/solaris_i386.c
+1
-1
src/backend/port/dynloader/solaris_i386.h
src/backend/port/dynloader/solaris_i386.h
+1
-1
src/backend/port/dynloader/solaris_sparc.c
src/backend/port/dynloader/solaris_sparc.c
+1
-1
src/backend/port/dynloader/solaris_sparc.h
src/backend/port/dynloader/solaris_sparc.h
+1
-1
src/backend/port/getrusage.c
src/backend/port/getrusage.c
+3
-3
src/backend/port/tas/solaris_i386.s
src/backend/port/tas/solaris_i386.s
+1
-1
src/backend/storage/ipc/ipc.c
src/backend/storage/ipc/ipc.c
+2
-2
src/backend/storage/lmgr/proc.c
src/backend/storage/lmgr/proc.c
+3
-3
src/bin/pg_dump/common.c
src/bin/pg_dump/common.c
+2
-2
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.c
+2
-2
src/include/port/solaris_i386.h
src/include/port/solaris_i386.h
+0
-0
src/include/port/solaris_sparc.h
src/include/port/solaris_sparc.h
+0
-0
No files found.
src/backend/port/dynloader/
i386_solaris
.c
→
src/backend/port/dynloader/
solaris_i386
.c
100644 → 100755
View file @
8ed5918f
/* Dummy file used for nothing at this point
*
* see
i386_solaris
.h
* see
solaris_i386
.h
*/
src/backend/port/dynloader/
i386_solaris
.h
→
src/backend/port/dynloader/
solaris_i386
.h
100644 → 100755
View file @
8ed5918f
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id:
i386_solaris.h,v 1.1 1997/12/20 03:23:33 scrappy
Exp $
* $Id:
solaris_i386.h,v 1.1 1998/06/19 02:55:06 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
src/backend/port/dynloader/s
parc_solaris
.c
→
src/backend/port/dynloader/s
olaris_sparc
.c
100644 → 100755
View file @
8ed5918f
/* Dummy file used for nothing at this point
*
* see
i386_solaris
.h
* see
solaris_i386
.h
*/
src/backend/port/dynloader/s
parc_solaris
.h
→
src/backend/port/dynloader/s
olaris_sparc
.h
100644 → 100755
View file @
8ed5918f
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: s
parc_solaris.h,v 1.1 1997/12/20 03:35:55 scrappy
Exp $
* $Id: s
olaris_sparc.h,v 1.1 1998/06/19 02:55:06 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
src/backend/port/getrusage.c
View file @
8ed5918f
/* $Id: getrusage.c,v 1.
7 1998/02/26 04:34:00
momjian Exp $ */
/* $Id: getrusage.c,v 1.
8 1998/06/19 02:55:04
momjian Exp $ */
#include <math.h>
/* for pow() prototype */
...
...
@@ -7,9 +7,9 @@
#if 0 /* this is from univel port ... how does
* compiler define? */
/* same for
i386_solaris
port ... how does compiler define? */
/* same for
solaris_i386
port ... how does compiler define? */
/* same for sco port ... how does compiler define? */
/* same for s
parc_solaris
port ... how does compiler define? */
/* same for s
olaris_sparc
port ... how does compiler define? */
/* same for svr4 port ... how does compiler define? */
int
getrusage(int who, struct rusage * rusage)
...
...
src/backend/port/tas/solaris_i386.s
View file @
8ed5918f
/=============================================================================
/
tas.s
--
test
and
set
lock
for
i386_solaris
/
tas.s
--
test
and
set
lock
for
solaris_i386
/=============================================================================
.
file
"tas.s"
...
...
src/backend/storage/ipc/ipc.c
View file @
8ed5918f
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.2
4 1998/06/18 03:56:08
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.2
5 1998/06/19 02:55:10
momjian Exp $
*
* NOTES
*
...
...
@@ -40,7 +40,7 @@
#include "utils/memutils.h"
#include "libpq/libpq.h"
#if defined(s
parc_solaris
)
#if defined(s
olaris_sparc
)
#include <string.h>
#include <sys/ipc.h>
#endif
...
...
src/backend/storage/lmgr/proc.c
View file @
8ed5918f
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.3
5 1998/06/15 19:29:2
1 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.3
6 1998/06/19 02:55:1
1 momjian 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.3
5 1998/06/15 19:29:2
1 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.3
6 1998/06/19 02:55:1
1 momjian Exp $
*/
#include <sys/time.h>
#include <unistd.h>
...
...
@@ -54,7 +54,7 @@
#include <signal.h>
#include <sys/types.h>
#if defined(s
parc_solaris
)
#if defined(s
olaris_sparc
)
#include <sys/ipc.h>
#include <sys/sem.h>
#endif
...
...
src/bin/pg_dump/common.c
View file @
8ed5918f
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/pg_dump/common.c,v 1.2
1 1998/06/15 19:30:00
momjian Exp $
* $Header: /cvsroot/pgsql/src/bin/pg_dump/common.c,v 1.2
2 1998/06/19 02:55:13
momjian Exp $
*
* Modifications - 6/12/96 - dave@bensoft.com - version 1.13.dhb.2
*
...
...
@@ -24,7 +24,7 @@
#include <string.h>
#include <ctype.h>
#include <sys/param.h>
/* for MAXHOSTNAMELEN on most */
#ifdef s
parc_solaris
#ifdef s
olaris_sparc
#include <netdb.h>
/* for MAXHOSTNAMELEN on some */
#endif
...
...
src/bin/pg_dump/pg_dump.c
View file @
8ed5918f
...
...
@@ -21,7 +21,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.7
4 1998/06/16 07:29:32
momjian Exp $
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.7
5 1998/06/19 02:55:14
momjian Exp $
*
* Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb
*
...
...
@@ -57,7 +57,7 @@
#include <string.h>
#include <ctype.h>
#include <sys/param.h>
/* for MAXHOSTNAMELEN on most */
#ifdef s
parc_solaris
#ifdef s
olaris_sparc
#include <netdb.h>
/* for MAXHOSTNAMELEN on some */
#endif
...
...
src/include/port/
i386_solaris
.h
→
src/include/port/
solaris_i386
.h
100644 → 100755
View file @
8ed5918f
File moved
src/include/port/s
parc_solaris
.h
→
src/include/port/s
olaris_sparc
.h
100644 → 100755
View file @
8ed5918f
File moved
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