1) Fixed bug that caused asRegisterClientCallback to fail on UNIX

2) asLib_lex.l changed to allow more characters(like dbLoadxxx)
This commit is contained in:
Marty Kraimer
1997-10-14 13:40:39 +00:00
parent 61f1e8b12f
commit d0a8812231
4 changed files with 21 additions and 29 deletions
+8 -2
View File
@@ -119,9 +119,15 @@ int asDumpHash(void);
#define ASMAXINP 12
#ifdef vxWorks
#include <fast_lock.h>
extern FAST_LOCK asLock;
extern int asLockInit;
#else
/*This only works in a single threaded environment */
#define FAST_LOCK int
#define FASTLOCKINIT(PFAST_LOCK)
#define FASTLOCK(PFAST_LOCK)
#define FASTUNLOCK(PFAST_LOCK)
#endif
extern int asLockInit;
extern FAST_LOCK asLock;
extern int asActive;
/* definition of access rights*/
typedef enum{asNOACCESS,asREAD,asWRITE} asAccessRights;