File tree 20 files changed +286
-202
lines changed
20 files changed +286
-202
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.36 1997/06/07 17:34:35 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.37 1997/07/28 00:53:40 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
+ #include <sys/types.h>
14
15
#include <sys/file.h>
15
16
#include <string.h>
16
- #include <sys/types.h>
17
17
#include <sys/stat.h>
18
18
#include <fcntl.h>
19
19
#include <unistd.h>
Original file line number Diff line number Diff line change 11
11
*
12
12
*
13
13
* IDENTIFICATION
14
- * $Header: /cvsroot/pgsql/src/backend/executor/execScan.c,v 1.2 1996/10/31 10:11:34 scrappy Exp $
14
+ * $Header: /cvsroot/pgsql/src/backend/executor/execScan.c,v 1.3 1997/07/28 00:53:51 momjian Exp $
15
15
*
16
16
*-------------------------------------------------------------------------
17
17
*/
18
18
19
+ #include <sys/types.h>
19
20
#include <sys/file.h>
20
21
#include "postgres.h"
21
22
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/executor/nodeHash.c,v 1.8 1997/04/22 03:32:38 vadim Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/executor/nodeHash.c,v 1.9 1997/07/28 00:53:58 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
19
19
*
20
20
*/
21
21
22
+ #include <sys/types.h>
22
23
#include <stdio.h> /* for sprintf() */
23
24
#include <math.h>
24
25
#include <string.h>
25
26
#include <sys/file.h>
26
- #include <sys/types.h>
27
27
#include <sys/stat.h>
28
28
#include <fcntl.h>
29
29
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/executor/nodeHashjoin.c,v 1.3 1996/11/06 06:47:41 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/executor/nodeHashjoin.c,v 1.4 1997/07/28 00:54:06 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
+ #include <sys/types.h>
14
15
#include <string.h>
15
16
#include <sys/file.h>
16
- #include <sys/types.h>
17
17
#include <sys/stat.h>
18
18
#include <fcntl.h>
19
19
Original file line number Diff line number Diff line change 15
15
* ExecEndTee
16
16
*
17
17
* IDENTIFICATION
18
- * $Header: /cvsroot/pgsql/src/backend/executor/Attic/nodeTee.c,v 1.5 1996/11/10 03: 00:08 momjian Exp $
18
+ * $Header: /cvsroot/pgsql/src/backend/executor/Attic/nodeTee.c,v 1.6 1997/07/28 00:54:11 momjian Exp $
19
19
*
20
20
*-------------------------------------------------------------------------
21
21
*/
22
22
23
+ #include <sys/types.h>
23
24
#include <sys/file.h>
24
25
#include "postgres.h"
25
26
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.16 1997/04/17 20:38:16 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.17 1997/07/28 00:54:18 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -493,7 +493,9 @@ pq_regoob(void (*fptr)())
493
493
int fd = fileno (Pfout );
494
494
#if defined(hpux )
495
495
ioctl (fd , FIOSSAIOOWN , getpid ());
496
- #else /* hpux */
496
+ #elif defined(sco )
497
+ ioctl (fd , SIOCSPGRP , getpid ());
498
+ #else
497
499
fcntl (fd , F_SETOWN , getpid ());
498
500
#endif /* hpux */
499
501
(void ) pqsignal (SIGURG ,fptr );
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/storage/buffer/buf_init.c,v 1.9 1997/04/18 02:53:15 vadim Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/storage/buffer/buf_init.c,v 1.10 1997/07/28 00:54:33 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
+ #include <sys/types.h>
14
15
#include <sys/file.h>
15
16
#include <stdio.h>
16
17
#include <math.h>
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/storage/buffer/bufmgr.c,v 1.14 1997/07/24 20:13:48 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/storage/buffer/bufmgr.c,v 1.15 1997/07/28 00:54:43 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
46
46
* freelist.c -- chooses victim for buffer replacement
47
47
* buf_table.c -- manages the buffer lookup table
48
48
*/
49
+ #include <sys/types.h>
49
50
#include <sys/file.h>
50
51
#include <stdio.h>
51
52
#include <string.h>
Original file line number Diff line number Diff line change 15
15
*
16
16
*
17
17
* IDENTIFICATION
18
- * $Header: /cvsroot/pgsql/src/backend/storage/buffer/localbuf.c,v 1.7 1997/05/20 11:30:32 vadim Exp $
18
+ * $Header: /cvsroot/pgsql/src/backend/storage/buffer/localbuf.c,v 1.8 1997/07/28 00:54:48 momjian Exp $
19
19
*
20
20
*-------------------------------------------------------------------------
21
21
*/
22
+ #include <sys/types.h>
22
23
#include <sys/file.h>
23
24
#include <stdio.h>
24
25
#include <string.h>
Original file line number Diff line number Diff line change 6
6
* Copyright (c) 1994, Regents of the University of California
7
7
*
8
8
* IDENTIFICATION
9
- * $Id: fd.c,v 1.18 1997/05/23 02:56:48 vadim Exp $
9
+ * $Id: fd.c,v 1.19 1997/07/28 00:54:52 momjian Exp $
10
10
*
11
11
* NOTES:
12
12
*
37
37
*-------------------------------------------------------------------------
38
38
*/
39
39
40
+ #include <sys/types.h>
40
41
#include <stdio.h>
41
42
#include <sys/file.h>
42
43
#include <sys/param.h>
43
44
#include <errno.h>
44
45
#include <sys/stat.h>
45
46
#include <string.h>
46
47
#include <unistd.h>
47
- #include <sys/types.h>
48
48
#include <fcntl.h>
49
49
50
50
#include "postgres.h"
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/storage/large_object/inv_api.c,v 1.10 1997/06/05 22:59:29 momjian Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/storage/large_object/inv_api.c,v 1.11 1997/07/28 00:55:08 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
15
+ #include <sys/types.h>
15
16
#include <stdio.h> /* for sprintf() */
16
17
#include <string.h>
17
18
#include <sys/file.h>
18
- #include <sys/types.h>
19
19
#include <sys/stat.h>
20
20
21
21
#include "postgres.h"
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.34 1997/07/24 20:15:03 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.35 1997/07/28 00:55:28 momjian Exp $
11
11
*
12
12
* NOTES
13
13
* this is the "main" module of the postgres backend and
29
29
#ifndef MAXHOSTNAMELEN
30
30
#include <netdb.h> /* for MAXHOSTNAMELEN on some */
31
31
#endif
32
+ #ifndef MAXHOSTNAMELEN /* for MAXHOSTNAMELEN under sco3.2v5.0.2 */
33
+ #include <sys/socket.h>
34
+ #endif
32
35
#include <errno.h>
33
36
#ifdef aix
34
37
#include <sys/select.h>
@@ -1271,7 +1274,7 @@ PostgresMain(int argc, char *argv[])
1271
1274
*/
1272
1275
if (IsUnderPostmaster == false) {
1273
1276
puts ("\nPOSTGRES backend interactive interface" );
1274
- puts ("$Revision: 1.34 $ $Date: 1997/07/24 20:15:03 $" );
1277
+ puts ("$Revision: 1.35 $ $Date: 1997/07/28 00:55:28 $" );
1275
1278
}
1276
1279
1277
1280
/* ----------------
Original file line number Diff line number Diff line change 8
8
#
9
9
#
10
10
# IDENTIFICATION
11
- # $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh.in,v 1.3 1997/04/24 20:30:16 scrappy Exp $
11
+ # $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh.in,v 1.4 1997/07/28 00:55:41 momjian Exp $
12
12
#
13
13
# NOTES
14
14
# Passes any -D options on to cpp prior to generating the list
@@ -81,7 +81,7 @@ cat > $HFILE <<FuNkYfMgRsTuFf
81
81
*
82
82
* Copyright (c) 1994, Regents of the University of California
83
83
*
84
- * $Id : Gen_fmgrtab.sh.in,v 1.3 1997/04/24 20:30:16 scrappy Exp $
84
+ * $Id : Gen_fmgrtab.sh.in,v 1.4 1997/07/28 00:55:41 momjian Exp $
85
85
*
86
86
* NOTES
87
87
* ******************************
@@ -152,7 +152,7 @@ extern void load_file(char *filename);
152
152
153
153
FuNkYfMgRsTuFf
154
154
awk ' { print $2, $1; }' $RAWFILE | \
155
- @TR@ ' [a-z] ' ' [A-Z] ' | \
155
+ @TR@ @TRARGS@ | \
156
156
sed -e ' s/^/#define F_/' >> $HFILE
157
157
cat >> $HFILE << FuNkYfMgRsTuFf
158
158
@@ -175,7 +175,7 @@ cat > $TABCFILE <<FuNkYfMgRtAbStUfF
175
175
*
176
176
*
177
177
* IDENTIFICATION
178
- * $Header : /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh.in,v 1.3 1997/04/24 20:30:16 scrappy Exp $
178
+ * $Header : /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh.in,v 1.4 1997/07/28 00:55:41 momjian Exp $
179
179
*
180
180
* NOTES
181
181
*
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.16 1997/06/03 13:58:06 thomas Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.17 1997/07/28 00:55:49 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -1446,7 +1446,8 @@ static int isinf(x)
1446
1446
}
1447
1447
#endif /* alpha */
1448
1448
1449
- #if defined(sparc_solaris ) || defined(i386_solaris ) || defined(svr4 )
1449
+ #if defined(sparc_solaris ) || defined(i386_solaris ) || defined(svr4 ) || \
1450
+ defined(sco )
1450
1451
#include <ieeefp.h>
1451
1452
static int
1452
1453
isinf (d )
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/misc.c,v 1.6 1997/04/27 19:20:14 thomas Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/misc.c,v 1.7 1997/07/28 00:55:58 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
+ #include <sys/types.h>
14
15
#include <sys/file.h>
15
16
#include "postgres.h"
16
17
#include "utils/datum.h"
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.9 1997/06/04 08 :56:51 vadim Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.10 1997/07/28 00 :56:04 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
29
29
* careful....
30
30
*
31
31
*/
32
+ #include <sys/types.h>
32
33
#include <stdio.h> /* for sprintf() */
33
34
#include <errno.h>
34
35
#include <sys/file.h>
You can’t perform that action at this time.
0 commit comments