Change next to nextstep where missed.

This commit is contained in:
Bruce Momjian 1997-01-26 20:15:26 +00:00
parent 427a964c30
commit 1836ce2c81
3 changed files with 8 additions and 8 deletions

View File

@ -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 (nextstep)
/*
* NEXTSTEP (mach)
* slock_t is defined as a struct mutex.

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.26 1997/01/26 15:30:48 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.27 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(nextstep)
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(nextstep) */
int InWarn;
extern int NBuffers;
@ -1282,7 +1282,7 @@ PostgresMain(int argc, char *argv[])
*/
if (IsUnderPostmaster == false) {
puts("\nPOSTGRES backend interactive interface");
puts("$Revision: 1.26 $ $Date: 1997/01/26 15:30:48 $");
puts("$Revision: 1.27 $ $Date: 1997/01/26 20:15:06 $");
}
/* ----------------

View File

@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: ipc.h,v 1.12 1997/01/13 03:54:48 bryanh Exp $
* $Id: ipc.h,v 1.13 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(nextstep)
extern int S_LOCK_FREE(slock_t *lock);
#else
#define S_LOCK_FREE(lock) ((*lock) == 0)