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
b60c57da
Commit
b60c57da
authored
Feb 02, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply patches for QNX from Maurizio
parent
a1c68b4e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
7 deletions
+12
-7
src/backend/port/qnx4/sem.c
src/backend/port/qnx4/sem.c
+2
-2
src/include/storage/s_lock.h
src/include/storage/s_lock.h
+2
-2
src/interfaces/ecpg/preproc/pgc.l
src/interfaces/ecpg/preproc/pgc.l
+6
-1
src/interfaces/python/README
src/interfaces/python/README
+2
-2
No files found.
src/backend/port/qnx4/sem.c
View file @
b60c57da
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/port/qnx4/Attic/sem.c,v 1.
3 2000/04/12 17:15:30
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/port/qnx4/Attic/sem.c,v 1.
4 2001/02/02 18:21:58
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
#define SETMAX ((MAXBACKENDS + PROC_NSEMS_PER_SET - 1) / PROC_NSEMS_PER_SET)
#define SETMAX ((MAXBACKENDS + PROC_NSEMS_PER_SET - 1) / PROC_NSEMS_PER_SET)
#define SEMMAX (PROC_NSEMS_PER_SET)
#define SEMMAX (PROC_NSEMS_PER_SET
+1
)
#define OPMAX 8
#define OPMAX 8
#define MODE 0700
#define MODE 0700
...
...
src/include/storage/s_lock.h
View file @
b60c57da
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.8
6 2001/01/24 19:43:28
momjian Exp $
* $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.8
7 2001/02/02 18:21:59
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -112,7 +112,7 @@ extern void s_lock_sleep(unsigned spins, int microsec,
...
@@ -112,7 +112,7 @@ extern void s_lock_sleep(unsigned spins, int microsec,
*/
*/
#if defined(__i386__)
#if defined(__i386__)
&& !defined(__QNX__)
#define TAS(lock) tas(lock)
#define TAS(lock) tas(lock)
static
__inline__
int
static
__inline__
int
...
...
src/interfaces/ecpg/preproc/pgc.l
View file @
b60c57da
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.7
3 2001/01/24 19:43:2
9 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.7
4 2001/02/02 18:21:5
9 momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -35,6 +35,11 @@
...
@@ -35,6 +35,11 @@
#undef yywrap
#undef yywrap
#endif /* yywrap */
#endif /* yywrap */
#ifdef __QNX__
/* For some reason, QNX needs this, bjm 2001-02-02 */
#define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
#endif
#define YY_NO_UNPUT
#define YY_NO_UNPUT
extern YYSTYPE yylval;
extern YYSTYPE yylval;
...
...
src/interfaces/python/README
View file @
b60c57da
PyGreSQL
-
v
2
.5
:
PostgreSQL
module
for
Python
PyGreSQL
-
v
3
.1
:
PostgreSQL
module
for
Python
==============================================
==============================================
0.
Copyright
notice
0.
Copyright
notice
===================
===================
PyGreSQL
,
version
2.5
PyGreSQL
,
version
3.1
A
Python
interface
for
PostgreSQL
database
.
A
Python
interface
for
PostgreSQL
database
.
Written
by
D
'Arcy J.M. Cain, darcy@druid.net<BR>
Written
by
D
'Arcy J.M. Cain, darcy@druid.net<BR>
Based heavily on code written by Pascal Andre, andre@chimay.via.ecp.fr.
Based heavily on code written by Pascal Andre, andre@chimay.via.ecp.fr.
...
...
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