diff options
author | Sven Gothel <[email protected]> | 2011-11-29 17:01:50 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-11-29 17:01:50 +0100 |
commit | 02e5b9b0040deb9f6c11ae305a23213d006f0d40 (patch) | |
tree | 6f53170ba4c4026c634e9e01b1b6a2e7cc9cee89 /src/newt/native/NewtMacWindow.h | |
parent | daf11ad8174a1b4471eaa0b59c8350b4175baae2 (diff) |
NEWTMacWindow:View: Make lock recursive ..
Attempt to fix the shared-context-multithreading bug (eg. TestSharedContextVBOES2NEWT2)
via proper locking .. but seems not to be sufficient (yet).
Diffstat (limited to 'src/newt/native/NewtMacWindow.h')
-rw-r--r-- | src/newt/native/NewtMacWindow.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/newt/native/NewtMacWindow.h b/src/newt/native/NewtMacWindow.h index 17c9416d9..eaece2cf8 100644 --- a/src/newt/native/NewtMacWindow.h +++ b/src/newt/native/NewtMacWindow.h @@ -54,8 +54,8 @@ JavaVM *jvmHandle; int jvmVersion; - BOOL destroyNotifySent; - BOOL softLocked; + volatile BOOL destroyNotifySent; + volatile BOOL softLocked; pthread_mutex_t softLockSync; NSTrackingRectTag ptrTrackingTag; @@ -89,7 +89,7 @@ - (BOOL) needsDisplay; - (void) displayIfNeeded; -- (void) viewWillDraw; +- (void) display; - (void) drawRect:(NSRect)dirtyRect; - (void) viewDidHide; - (void) viewDidUnhide; |