mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
From: Dan McGuirk <mcguirk@indirect.com>
Subject: [HACKERS] linux/alpha patches These patches lay the groundwork for a Linux/Alpha port. The port doesn't actually work unless you tweak the linker to put all the pointers in the first 32 bits of the address space, but it's at least a start. It implements the test-and-set instruction in Alpha assembly, and also fixes a lot of pointer-to-integer conversions, which is probably good anyway.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/error/elog.c,v 1.12 1997/02/14 04:17:57 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/error/elog.c,v 1.13 1997/03/12 21:10:53 scrappy Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -49,7 +49,8 @@ elog(int lev, const char *fmt, ... )
|
||||
extern int errno, sys_nerr;
|
||||
#if !defined(BSD44_derived) && \
|
||||
!defined(bsdi) && \
|
||||
!defined(bsdi_2_1)
|
||||
!defined(bsdi_2_1) && \
|
||||
!defined(linuxalpha)
|
||||
extern char *sys_errlist[];
|
||||
#endif /* bsd derived */
|
||||
#ifndef PG_STANDALONE
|
||||
|
Reference in New Issue
Block a user