head	1.8;
access
	werner
	shectman;
symbols;
locks; strict;
comment	@ * @;


1.8
date	90.08.17.08.54.39;	author cimarron;	state Exp;
branches;
next	;


desc
@Initial Ported Version
@


1.8
log
@checked in with -k by werner at 1992/01/09 17:00:36
@
text
@/*
 * globals.h --
 *
 */

#ifndef	GlobalsIncluded		/* Include this file only once */
#define	GlobalsIncluded	1

/*
 * Identification:
 */
#define GLOBALS_H	"$Header: RCS/globals.h,v 1.8 90/08/17 08:54:39 cimarron Exp $"

#include "tmp/c.h"
#include "storage/sinval.h"

extern int Debugfile;
extern int Ttyfile;
extern int Dblog;
extern int Slog;
extern int Portfd;
extern int Packfd;
extern int Slog;
extern int Pipefd;
extern int Noversion;		/* moved from magic.c	*/

extern BackendId    MyBackendId;
extern BackendTag   MyBackendTag;
extern NameData	    MyDatabaseNameData;
extern Name	    MyDatabaseName;
extern bool	    MyDatabaseIdIsInitialized;
extern ObjectId	    MyDatabaseId;
extern bool	    TransactionInitWasProcessed;

extern bool	    IsUnderPostmaster;

extern struct bcommon Ident;	/* moved from dlog */

extern LastOidProcessed;	/* for query rewrite */

#define MAX_PARSE_BUFFER 8192

/* ----------------
 *	number of buffers in buffer pool
 * ----------------
 */
#define NDBUFS 16

#endif	/* !defined(GlobalsIncluded) */
@
