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:
+8
-2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user