Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit8ed5918

Browse files
committed
Solaris cleanup.
1 parentda1ac9a commit8ed5918

File tree

12 files changed

+17
-17
lines changed

12 files changed

+17
-17
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/* Dummy file used for nothing at this point
22
*
3-
* seei386_solaris.h
3+
* seesolaris_i386.h
44
*/

‎src/backend/port/dynloader/i386_solaris.hrenamed to‎src/backend/port/dynloader/solaris_i386.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id:i386_solaris.h,v 1.11997/12/20 03:23:33 scrappy Exp $
9+
* $Id:solaris_i386.h,v 1.11998/06/19 02:55:06 momjian Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/* Dummy file used for nothing at this point
22
*
3-
* seei386_solaris.h
3+
* seesolaris_i386.h
44
*/

‎src/backend/port/dynloader/sparc_solaris.hrenamed to‎src/backend/port/dynloader/solaris_sparc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id:sparc_solaris.h,v 1.11997/12/20 03:35:55 scrappy Exp $
9+
* $Id:solaris_sparc.h,v 1.11998/06/19 02:55:06 momjian Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/

‎src/backend/port/getrusage.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $Id: getrusage.c,v 1.7 1998/02/26 04:34:00 momjian Exp $ */
1+
/* $Id: getrusage.c,v 1.8 1998/06/19 02:55:04 momjian Exp $ */
22

33
#include<math.h>/* for pow() prototype */
44

@@ -7,9 +7,9 @@
77

88
#if0/* this is from univel port ... how does
99
* compiler define? */
10-
/* same fori386_solaris port ... how does compiler define? */
10+
/* same forsolaris_i386 port ... how does compiler define? */
1111
/* same for sco port ... how does compiler define? */
12-
/* same forsparc_solaris port ... how does compiler define? */
12+
/* same forsolaris_sparc port ... how does compiler define? */
1313
/* same for svr4 port ... how does compiler define? */
1414
int
1515
getrusage(intwho,structrusage*rusage)

‎src/backend/port/tas/solaris_i386.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/=============================================================================
2-
/ tas.s -- test and set lock fori386_solaris
2+
/ tas.s -- test and set lock forsolaris_i386
33
/=============================================================================
44

55
.file"tas.s"

‎src/backend/storage/ipc/ipc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.24 1998/06/18 03:56:08 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.25 1998/06/19 02:55:10 momjian Exp $
1111
*
1212
* NOTES
1313
*
@@ -40,7 +40,7 @@
4040
#include"utils/memutils.h"
4141
#include"libpq/libpq.h"
4242

43-
#if defined(sparc_solaris)
43+
#if defined(solaris_sparc)
4444
#include<string.h>
4545
#include<sys/ipc.h>
4646
#endif

‎src/backend/storage/lmgr/proc.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.35 1998/06/15 19:29:21 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.36 1998/06/19 02:55:11 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -46,15 +46,15 @@
4646
*This is so that we can support more backends. (system-wide semaphore
4747
*sets run out pretty fast.) -ay 4/95
4848
*
49-
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.35 1998/06/15 19:29:21 momjian Exp $
49+
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.36 1998/06/19 02:55:11 momjian Exp $
5050
*/
5151
#include<sys/time.h>
5252
#include<unistd.h>
5353
#include<string.h>
5454
#include<signal.h>
5555
#include<sys/types.h>
5656

57-
#if defined(sparc_solaris)
57+
#if defined(solaris_sparc)
5858
#include<sys/ipc.h>
5959
#include<sys/sem.h>
6060
#endif

‎src/bin/pg_dump/common.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/bin/pg_dump/common.c,v 1.21 1998/06/15 19:30:00 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/bin/pg_dump/common.c,v 1.22 1998/06/19 02:55:13 momjian Exp $
1111
*
1212
* Modifications - 6/12/96 - dave@bensoft.com - version 1.13.dhb.2
1313
*
@@ -24,7 +24,7 @@
2424
#include<string.h>
2525
#include<ctype.h>
2626
#include<sys/param.h>/* for MAXHOSTNAMELEN on most */
27-
#ifdefsparc_solaris
27+
#ifdefsolaris_sparc
2828
#include<netdb.h>/* for MAXHOSTNAMELEN on some */
2929
#endif
3030

‎src/bin/pg_dump/pg_dump.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
*
2323
* IDENTIFICATION
24-
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.74 1998/06/16 07:29:32 momjian Exp $
24+
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.75 1998/06/19 02:55:14 momjian Exp $
2525
*
2626
* Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb
2727
*
@@ -57,7 +57,7 @@
5757
#include<string.h>
5858
#include<ctype.h>
5959
#include<sys/param.h>/* for MAXHOSTNAMELEN on most */
60-
#ifdefsparc_solaris
60+
#ifdefsolaris_sparc
6161
#include<netdb.h>/* for MAXHOSTNAMELEN on some */
6262
#endif
6363

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp