diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-02-28 15:40:06 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-02-28 22:34:23 +0200 |
commit | 82e7c71e768c2281bd5e571e973e4478917e9e43 (patch) | |
tree | f4851ee48e7e442e1ca30e86439b9189fba1f03f | |
parent | 7de08bcde91eece3ea4d5d5ba71cf9ba8aac6080 (diff) |
Try uncommenting these now, I don't think the FIXME holds any more
Change-Id: Idded90eaa68481dbb9b4045ff62a54e13c7baa31
-rw-r--r-- | vcl/android/androidinst.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/vcl/android/androidinst.cxx b/vcl/android/androidinst.cxx index d855c17b89ff..b9ca23f73010 100644 --- a/vcl/android/androidinst.cxx +++ b/vcl/android/androidinst.cxx @@ -852,14 +852,13 @@ SalInstance *CreateSalInstance() LOGI("Android: CreateSalInstance!"); AndroidSalInstance* pInstance = new AndroidSalInstance( new SalYieldMutex() ); new AndroidSalData( pInstance ); -// FIXME: we init VCL in a different thread from where we run the mainloop [!] ... -// pInstance->AcquireYieldMutex(1); + pInstance->AcquireYieldMutex(1); return pInstance; } void DestroySalInstance( SalInstance *pInst ) { -// pInst->ReleaseYieldMutex(); + pInst->ReleaseYieldMutex(); delete pInst; } |