commit 013600318f24391cd6c8c541343c208736b5f4f4 Author: Sven Gothel Date: Sun Dec 18 23:11:17 2011 +0100 junit.run: Add 32bit tests for OSX (fat binaries) commit aa4cc872d630d7de170bdc4202d072220c053325 Author: Sven Gothel Date: Sun Dec 18 23:10:15 2011 +0100 Fix regression of commit b669435d277a10e6163034aba286ecccce013f69, which removed the lib-base-name search for OSX commit 791dacb29bcd6d7ed161c6bd2abf7937c7d00691 Author: Sven Gothel Date: Sun Dec 18 16:08:15 2011 +0100 JNILibLoaderBaser.addNativeJarLibs(..): Catch all Exception (also IllegalArgumentException) - solves case using plain class instead of JAR file commit f20389b3f59c5d8c6d9afe0df16282dd09115640 Author: Sven Gothel Date: Sun Dec 18 04:17:47 2011 +0100 JavaEmitter: Fix primitive StructEmitter for non-fixed-sized (size conversion, ie. 32/64 bits) An opaque type still needs to be converted to the right size (32/64 bit). In case of a conversion, respect the pointer type. This fixes bug 536 . commit 53bcf1366374a2005003088b02d6019ca402843c Author: Sven Gothel Date: Sun Dec 18 04:11:02 2011 +0100 GlueGen: Expose public static debug() commit 24d65241c4918bef21a1705814d90cddb3e33b67 Author: Sven Gothel Date: Sun Dec 18 04:10:33 2011 +0100 scrips for sol commit 4374d11a3a204ab608402ee24a8cee14eff923ef Author: Sven Gothel Date: Sun Dec 11 04:10:34 2011 +0100 RecursiveThreadGroupLock: New recursive lock interface and impl, allowing 'spawn off' process to become the lock owner. To avoid complicated synchronization via synchronized, wait and notify between one thread and a 'spawn' off thread which temporarly requires the hold lock, RecursiveThreadGroupLock allows to add and remove other threads to become owners of the lock as if they were the original holder. This simplifies some rare locking use cases, eg. in JOGL's GLProfile initialization sequence where a SharedResourceRunner thread is taking over initialization of shared resources. commit 8dc2ad6a130c75121bc35e393d1cab89217d4d63 Author: Sven Gothel Date: Sun Dec 11 04:06:06 2011 +0100 Cleanup Lock Package: API doc, complete throws declaration, interface RecursiveLockImpl01Unfairish.Sync RecursiveLockImpl01Unfairish changes are in preparation of RecursiveGroupThreadLock.