File tree 4 files changed +6
-9
lines changed
4 files changed +6
-9
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/libpq/pqcomm.c,v 1.8 1996/11/15 09:54:28 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.9 1996/11/24 04:05:20 bryanh Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
38
38
#include <string.h>
39
39
#include <errno.h>
40
40
#include <fcntl.h>
41
- #include <signal.h>
42
41
#ifndef WIN32
43
42
#include <unistd.h> /* for ttyname() */
44
43
#include <sys/types.h>
Original file line number Diff line number Diff line change 10
10
*
11
11
*
12
12
* IDENTIFICATION
13
- * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.25 1996/11/14 10:24:01 bryanh Exp $
13
+ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.26 1996/11/24 04:07:00 bryanh Exp $
14
14
*
15
15
* NOTES
16
16
*
40
40
41
41
#include "postgres.h"
42
42
43
- #include <signal.h> /* for other stuff */
44
43
#include "libpq/pqsignal.h" /* substitute for <signal.h> */
45
44
#include <string.h>
46
45
#include <stdlib.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/lmgr/proc.c,v 1.9 1996/11/08 05:58:59 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.10 1996/11/24 04:07:05 bryanh Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
46
46
* This is so that we can support more backends. (system-wide semaphore
47
47
* sets run out pretty fast.) -ay 4/95
48
48
*
49
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.9 1996/11/08 05:58:59 momjian Exp $
49
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.10 1996/11/24 04:07:05 bryanh Exp $
50
50
*/
51
51
#include <sys/time.h>
52
52
#ifndef WIN32
53
53
#include <unistd.h>
54
54
#endif /* WIN32 */
55
55
#include <string.h>
56
- #include <signal.h>
57
56
#include <sys/types.h>
58
57
#include <sys/ipc.h>
59
58
#include <sys/sem.h>
Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: pqsignal.h,v 1.3 1996/11/06 10:30:08 scrappy Exp $
9
+ * $Id: pqsignal.h,v 1.4 1996/11/24 04:07:17 bryanh Exp $
10
10
*
11
11
* NOTES
12
12
* This shouldn't be in libpq, but the monitor and some other
17
17
#ifndef PQSIGNAL_H
18
18
#define PQSIGNAL_H
19
19
20
-
20
+ #include <signal.h>
21
21
22
22
typedef void (* pqsigfunc )(int );
23
23
You can’t perform that action at this time.
0 commit comments