From b4ad986ac0ed10c82b9a4020802236676d9a0eba Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Fri, 12 Oct 2001 01:24:22 +0000 Subject: [PATCH] make-logging-enhancements-aix-friendly-20011011 AIX lacks WCOREDUMP so we work around it --- src/bozo/bnode.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bozo/bnode.c b/src/bozo/bnode.c index b401b46e7..255edb968 100644 --- a/src/bozo/bnode.c +++ b/src/bozo/bnode.c @@ -34,6 +34,11 @@ RCSID("$Header$"); #include #include "bnode.h" +#ifdef AFS_AIX_ENV +/* All known versions of AIX lack WCOREDUMP but this works */ +#define WCOREDUMP(x) ((x) & 0x80) +#endif + #define BNODE_LWP_STACKSIZE (16 * 1024) int bnode_waiting = 0; -- 2.39.5