head	1.2;
access;
symbols
	release_4_2:1.2
	aix_ok:1.2;
locks; strict;
comment	@ * @;


1.2
date	93.08.10.19.50.31;	author aoki;	state Exp;
branches;
next	1.1;

1.1
date	93.07.24.04.26.24;	author aoki;	state Exp;
branches;
next	;


desc
@@


1.2
log
@added init_address_fixup
@
text
@/*
 *   FILE
 *	port.c
 *
 *   DESCRIPTION
 *	OSF/1-specific routines
 *
 *   INTERFACE ROUTINES
 *	init_address_fixup
 *
 *   NOTES
 *
 *   IDENTIFICATION
 *	$Header: /home2/aoki/master/src/backend/port/ultrix4/RCS/port.c,v 1.5 1993/08/10 19:39:55 aoki Exp $
 */

#include <sys/types.h>
#include <sys/sysinfo.h>
#include <sys/proc.h>

#include "tmp/c.h"

#include "utils/log.h"

RcsId("$Header: /home2/aoki/master/src/backend/port/ultrix4/RCS/port.c,v 1.5 1993/08/10 19:39:55 aoki Exp $");

init_address_fixup()
{
#ifdef NOFIXADE
    int buffer[] = { SSIN_UACPROC, UAC_SIGBUS };
#endif /* NOFIXADE */
#ifdef NOPRINTADE
    int buffer[] = { SSIN_UACPROC, UAC_NOPRINT };
#endif /* NOPRINTADE */

    if (setsysinfo(SSI_NVPAIRS, buffer, 1, (caddr_t) NULL,
		   (unsigned long) NULL) < 0) {
	elog(NOTICE, "setsysinfo failed: %d\n", errno);
    }
}
@


1.1
log
@Initial revision
@
text
@a0 1

d2 10
a11 1
 *  SENDANNOUNCE.C
d13 2
a14 1
 *  A do-nothing routine?
d16 10
a25 1
#define RcsId(a)
d27 8
a34 1
RcsId("$Header: /usr/local/dev/postgres/mastertree/newconf/RCS/port.c,v 1.4 1990/11/06 15:50:56 mao Exp $");
d36 5
a40 1
int i; /* to avoid "no symbol table" warning in some linkers */
@
