#include "structdefs.h"
#include "methodheaders.h"
-#define MAXLOCKS 256
-
-struct lockpair {
- struct ___Object___ *object;
- int islastlock;
-};
-
-struct lockvector {
- int index;
- struct lockpair locks[MAXLOCKS];
-};
-
#ifndef MAC
extern __thread struct lockvector lvector;
#endif
#include "optionalstruct.h"
#endif
+#define MAXLOCKS 256
+
+struct lockpair {
+ struct ___Object___ *object;
+ int islastlock;
+};
+
+struct lockvector {
+ int index;
+ struct lockpair locks[MAXLOCKS];
+};
+
+
#ifdef OPTIONAL
struct failedtasklist {
struct taskdescriptor *task;