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
fd786668
Commit
fd786668
authored
Jun 24, 2004
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include c.h instead of postgres.h in files that need to be usable in
both frontend and backend. Per Andreas Pflug.
parent
f8dd00c3
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
19 additions
and
19 deletions
+19
-19
src/port/getopt.c
src/port/getopt.c
+1
-1
src/port/getrusage.c
src/port/getrusage.c
+2
-2
src/port/gettimeofday.c
src/port/gettimeofday.c
+2
-2
src/port/kill.c
src/port/kill.c
+2
-2
src/port/noblock.c
src/port/noblock.c
+2
-2
src/port/pgsleep.c
src/port/pgsleep.c
+2
-2
src/port/pgstrcasecmp.c
src/port/pgstrcasecmp.c
+2
-2
src/port/pipe.c
src/port/pipe.c
+2
-2
src/port/sprompt.c
src/port/sprompt.c
+2
-2
src/port/thread.c
src/port/thread.c
+2
-2
No files found.
src/port/getopt.c
View file @
fd786668
...
...
@@ -32,7 +32,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
*/
#include "
postgres
.h"
#include "
c
.h"
#if defined(LIBC_SCCS) && !defined(lint)
...
...
src/port/getrusage.c
View file @
fd786668
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/port/getrusage.c,v 1.
4 2003/11/29 19:52:13 pgsq
l Exp $
* $PostgreSQL: pgsql/src/port/getrusage.c,v 1.
5 2004/06/24 18:53:48 tg
l Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -16,7 +16,7 @@
#include <stdio.h>
#include <errno.h>
#include "
postgres
.h"
#include "
c
.h"
#include "rusagestub.h"
/* This code works on:
...
...
src/port/gettimeofday.c
View file @
fd786668
/*
* $PostgreSQL: pgsql/src/port/gettimeofday.c,v 1.
4 2004/05/21 05:08:05
tgl Exp $
* $PostgreSQL: pgsql/src/port/gettimeofday.c,v 1.
5 2004/06/24 18:53:48
tgl Exp $
*
* Copyright (c) 2003 SRA, Inc.
* Copyright (c) 2003 SKC, Inc.
...
...
@@ -23,7 +23,7 @@
* SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
*/
#include "
postgres
.h"
#include "
c
.h"
#include <sys/time.h>
...
...
src/port/kill.c
View file @
fd786668
...
...
@@ -9,12 +9,12 @@
* signals that the backend can recognize.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/port/kill.c,v 1.
1 2004/05/27 13:08:57 momjian
Exp $
* $PostgreSQL: pgsql/src/port/kill.c,v 1.
2 2004/06/24 18:53:48 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
#include "
postgres
.h"
#include "
c
.h"
#ifdef WIN32
/* signal sending */
...
...
src/port/noblock.c
View file @
fd786668
...
...
@@ -7,12 +7,12 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/port/noblock.c,v 1.
1 2004/03/10 21:12:49 momjian
Exp $
* $PostgreSQL: pgsql/src/port/noblock.c,v 1.
2 2004/06/24 18:53:48 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
#include "
postgres
.h"
#include "
c
.h"
#include <sys/types.h>
#include <fcntl.h>
...
...
src/port/pgsleep.c
View file @
fd786668
...
...
@@ -6,11 +6,11 @@
*
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/port/pgsleep.c,v 1.
3 2004/04/12 16:19:18 momjian
Exp $
* $PostgreSQL: pgsql/src/port/pgsleep.c,v 1.
4 2004/06/24 18:53:48 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
#include "
postgres
.h"
#include "
c
.h"
#include <unistd.h>
#include <sys/time.h>
...
...
src/port/pgstrcasecmp.c
View file @
fd786668
...
...
@@ -16,11 +16,11 @@
*
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/port/pgstrcasecmp.c,v 1.
1 2004/05/07 00:24:59
tgl Exp $
* $PostgreSQL: pgsql/src/port/pgstrcasecmp.c,v 1.
2 2004/06/24 18:53:48
tgl Exp $
*
*-------------------------------------------------------------------------
*/
#include "
postgres
.h"
#include "
c
.h"
#include <ctype.h>
...
...
src/port/pipe.c
View file @
fd786668
...
...
@@ -10,12 +10,12 @@
* must be replaced with recv/send.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/port/pipe.c,v 1.
5 2004/06/11 03:48:35 momjian
Exp $
* $PostgreSQL: pgsql/src/port/pipe.c,v 1.
6 2004/06/24 18:53:48 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
#include "
postgres
.h"
#include "
c
.h"
#ifdef WIN32
int
...
...
src/port/sprompt.c
View file @
fd786668
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/port/sprompt.c,v 1.
5 2004/04/19 17:42:59 momjian
Exp $
* $PostgreSQL: pgsql/src/port/sprompt.c,v 1.
6 2004/06/24 18:53:48 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -26,7 +26,7 @@
*
* Returns a malloc()'ed string with the input (w/o trailing newline).
*/
#include "
postgres
.h"
#include "
c
.h"
#ifdef HAVE_TERMIOS_H
#include <termios.h>
...
...
src/port/thread.c
View file @
fd786668
...
...
@@ -7,12 +7,12 @@
*
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/port/thread.c,v 1.2
2 2004/06/08 01:45:50 momjian
Exp $
* $PostgreSQL: pgsql/src/port/thread.c,v 1.2
3 2004/06/24 18:53:48 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
#include "
postgres
.h"
#include "
c
.h"
#include <sys/types.h>
#include <errno.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