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
1836ce2c
Commit
1836ce2c
authored
Jan 26, 1997
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change next to nextstep where missed.
parent
427a964c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
src/backend/storage/ipc/s_lock.c
src/backend/storage/ipc/s_lock.c
+2
-2
src/backend/tcop/postgres.c
src/backend/tcop/postgres.c
+4
-4
src/include/storage/ipc.h
src/include/storage/ipc.h
+2
-2
No files found.
src/backend/storage/ipc/s_lock.c
View file @
1836ce2c
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/Attic/s_lock.c,v 1.
9 1996/12/04 03:06:04 bryanh
Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/Attic/s_lock.c,v 1.
10 1997/01/26 20:15:00 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -50,7 +50,7 @@
extern
int
tas
(
slock_t
*
lock
);
#if defined (next)
#if defined (next
step
)
/*
* NEXTSTEP (mach)
* slock_t is defined as a struct mutex.
...
...
src/backend/tcop/postgres.c
View file @
1836ce2c
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.2
6 1997/01/26 15:30:48 scrappy
Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.2
7 1997/01/26 20:15:06 momjian
Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
...
...
@@ -102,13 +102,13 @@ static bool IsEmptyQuery = false;
char
relname
[
80
];
/* current relation name */
#if defined(WIN32) || defined(next)
#if defined(WIN32) || defined(next
step
)
jmp_buf
Warn_restart
;
#define sigsetjmp(x,y) setjmp(x)
#define siglongjmp longjmp
#else
sigjmp_buf
Warn_restart
;
#endif
/*defined(WIN32) || defined(next) */
#endif
/*defined(WIN32) || defined(next
step
) */
int
InWarn
;
extern
int
NBuffers
;
...
...
@@ -1282,7 +1282,7 @@ PostgresMain(int argc, char *argv[])
*/
if
(
IsUnderPostmaster
==
false
)
{
puts
(
"
\n
POSTGRES backend interactive interface"
);
puts
(
"$Revision: 1.2
6 $ $Date: 1997/01/26 15:30:48
$"
);
puts
(
"$Revision: 1.2
7 $ $Date: 1997/01/26 20:15:06
$"
);
}
/* ----------------
...
...
src/include/storage/ipc.h
View file @
1836ce2c
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: ipc.h,v 1.1
2 1997/01/13 03:54:48 bryanh
Exp $
* $Id: ipc.h,v 1.1
3 1997/01/26 20:15:26 momjian
Exp $
*
* NOTES
* This file is very architecture-specific. This stuff should actually
...
...
@@ -35,7 +35,7 @@ extern void S_INIT_LOCK(slock_t *lock);
#if defined(alpha) || \
defined(hpux) || \
defined(irix5) || \
defined(next)
defined(next
step
)
extern
int
S_LOCK_FREE
(
slock_t
*
lock
);
#else
#define S_LOCK_FREE(lock) ((*lock) == 0)
...
...
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