#ifdef RCSID static char *RCSid = "$Header: oa.h,v 1.7 92/07/16 16:56:37 strabosh: Stab $ "; #endif /* RCSID */ /*----------------------------------------------------------------------------\ | Copyright (c) 1989, 1992 by ORACLE Corporation. All Rights Reserved. | \----------------------------------------------------------------------------*/ /* NAME OA.H - OA generic header file DESCRIPTION NOTES MODIFIED strabosh 07/16/92 - add oa_iserr mklein 01/16/92 - include oamst.h Trabosh 6/19/91 - added debug macros Trabosh 4/10/91 - created */ #ifndef OA #define OA #ifndef SOA #include #endif #ifndef OAXM #include #endif #ifndef OAMST #include #endif /* ** OA return codes */ #define OA_SUCC 0 /* success */ #define OA_FAIL -1 /* operation failed */ #define OA_WARN -2 /* operation had problems */ #define OA_FTL -3 /* operation completely bombed */ /* If this an error */ #define OA_ISERR(rc) ((rc) != OA_SUCC) /* ** Types of memory to alloc for OA memory manager */ #define OAMM_STD 0 /* common, ordinary type */ #define OAMM_TXT 1 /* short text buffer, < 256 bytes */ /* ** Debug macros */ #define OA_DBG_DEBUG ((uword)1 << 0) /* random debug information */ #define OA_DBG_STATS ((uword)1 << 1) /* record status information */ #define OA_DBG_MON ((uword)1 << 2) /* monitor process (eg. read/write io) */ #define OA_DBG_FLAKY ((uword)1 << 3) /* make module return random errors */ /* ** OA common alloc function */ #define oaalcm(lcx,type,size) soamalc(size) /* ** OA alloc standard memory function (would basically end up in malloc) */ #define oaallc(lcx,size) oaalcm(lcx,OAMM_STD,size) /* ** OA alloc short text function */ #define oaalct(lcx,size) oaalcm(lcx,OAMM_TXT,size) /* ** OA common re-alloc function */ #define oarelm(lcx,type,ptr,size) soareal(ptr,size) /* ** OA re-alloc standard memory function (would basically end up in realloc) */ #define oareal(lcx,ptr,size) oarelm(lcx,OAMM_STD,ptr,size) /* ** OA common free function */ #define oafrem(lcx,type,size) soafree(size) /* ** OA free standard memory function */ #define oafree(lcx,size) oafrem(lcx,OAMM_STD,size) /* ** OA free short text memory function */ #define oafret(lcx,size) oafrem(lcx,OAMM_TXT,size) /*--------------------------------------------------------------------------*/ #endif /* OA */