BlueCove on Mac OS X 10.8 "Mountain Lion"?

7,894 views
Skip to first unread message

Uwe

unread,
Aug 1, 2012, 3:48:17 PM8/1/12
to bluecov...@googlegroups.com
Hi, my application (http://www.uweschmidt.org/wiimote-whiteboard) runs with BlueCove 2.1.0 and does not work on the recently released Mac OS X 10.8 Mountain Lion. I'm not absolutely sure that BlueCove is the problem, since I personally haven't upgraded to OS X 10.8 yet, but some users sent in error reports that point to BlueCove.
Is there a fix? Here an excerpt:

Exception Type:  EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000002, 0x0000000000000000

Dyld Error Message:
 Symbol not found: _IOBluetoothLocalDeviceReadSupportedFeatures
 Referenced from: /private/var/folders/*/libbluecove.jnilib
 Expected in: /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth

Thread 0:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib         0x990197d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x99018cb0 mach_msg + 68
2   com.apple.CoreFoundation       0x96238cc9 __CFRunLoopServiceMachPort + 185
3   com.apple.CoreFoundation       0x9623e6af __CFRunLoopRun + 1247
4   com.apple.CoreFoundation       0x9623dd6a CFRunLoopRunSpecific + 378
5   com.apple.CoreFoundation       0x9623dbdb CFRunLoopRunInMode + 123
6   com.apple.HIToolbox           0x95a6d8aa RunCurrentEventLoopInMode + 242
7   com.apple.HIToolbox           0x95a6d619 ReceiveNextEventCommon + 374
8   com.apple.HIToolbox           0x95a6d494 BlockUntilNextEventMatchingListInMode + 88
9   com.apple.AppKit               0x96cb5a5a _DPSNextEvent + 724
10  com.apple.AppKit               0x96cb528c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
11  libawt.jnilib                 0x10aa0275 -[NSApplicationAWT nextEventMatchingMask:untilDate:inMode:dequeue:] + 132
12  com.apple.AppKit               0x96cab6dc -[NSApplication run] + 855
13  libawt.jnilib                 0x10a9e598 +[AWTStarter startAWT:] + 2019
14  libawt.jnilib                 0x10a9dd65 -[CPerformer perform] + 259
15  libobjc.A.dylib               0x9008a5d3 -[NSObject performSelector:withObject:] + 70
16  com.apple.Foundation           0x92c32200 __NSThreadPerformPerform + 395
17  com.apple.CoreFoundation       0x96218dcf __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
18  com.apple.CoreFoundation       0x962187f9 __CFRunLoopDoSources0 + 233
19  com.apple.CoreFoundation       0x9623e576 __CFRunLoopRun + 934
20  com.apple.CoreFoundation       0x9623dd6a CFRunLoopRunSpecific + 378
21  com.apple.CoreFoundation       0x9623dbdb CFRunLoopRunInMode + 123
22  com.apple.JavaApplicationLauncher 0x00006268 startupJava(LauncherArgsStruct*) + 304
23  com.apple.JavaApplicationLauncher 0x00009095 launchJavaApplicationWithJVMInfo + 1401
24  com.apple.JavaApplicationLauncher 0x0000599f launchJavaApplication + 39
25  org.uweschmidt.wiimote.whiteboard.WiimoteWhiteboard 0x00001e3a 0x1000 + 3642
26  org.uweschmidt.wiimote.whiteboard.WiimoteWhiteboard 0x00001c99 0x1000 + 3225
27  org.uweschmidt.wiimote.whiteboard.WiimoteWhiteboard 0x00001bc8 0x1000 + 3016

Thanks,
Uwe

Vaishaal Shankar

unread,
Aug 6, 2012, 12:11:18 AM8/6/12
to bluecov...@googlegroups.com
I have an application that also relies on bluecove, and I can confirm it does not work on mountain lion. I too get the same exact error as OP. When I switched to Lion, it worked perfectly.


Hope this helps!

Vaishaal Shankar

unread,
Aug 7, 2012, 11:07:02 PM8/7/12
to bluecov...@googlegroups.com
Hey quick update,

I managed to fix the problem with a small hack, I don't know another way around it, but what you can do is go to /System/Library/Frameworks and make a copy of IOBluetooth.Framework (name it IOBluetooth2.Framework or something), and then you can untar the attached archive in /System/Library/Frameworks (which is the Lion version of the same driver) and everything just works. 

Hope it helps :)
IOBluetooth-Lion.tgz

Jesse Scott

unread,
Aug 9, 2012, 8:41:49 PM8/9/12
to bluecov...@googlegroups.com
Hey Vaishaal,

Thanks, that's a good hack!
It makes the stack trace for the dynamic linking go away, However, BlueCove still isn't being found...

Uwe

unread,
Aug 11, 2012, 11:34:00 AM8/11/12
to bluecov...@googlegroups.com
Hi Vaishaal,

what do you mean by "everything just works"? Does BlueCove work normally for you?
Is Bluetooth still working with other devices? Changing the Bluetooth driver for the whole OS could screw things up in many places...

Uwe

Jesse Scott

unread,
Aug 13, 2012, 2:33:45 PM8/13/12
to bluecov...@googlegroups.com
Yeah, I recently discovered this hack was crashing XCode upon launch for me...

Vaishaal Shankar

unread,
Aug 15, 2012, 2:02:11 PM8/15/12
to bluecov...@googlegroups.com
I just wrote a script that switched the bluetooth drivers on the time of launching my app. Yeah I got lots of errors in bluetooth in general, but it seemed to work for my app just when the old driver was in the folder. I just force my java program to switch it on exit. I know its a TERRIBLE way of doing things. 

The real problem stems from the fact that the bluecove xcode package uses some very deprecated libraries (it uses the 10.5 SDK), and mountain lion removed support for those.


I tried updating the code to support a 10.8 sdk, but I'm not an objective-c buff, so it kinda failed. So if anybody can rebuild the bluecove package that would be great :D

Uwe

unread,
Aug 15, 2012, 7:00:33 PM8/15/12
to bluecov...@googlegroups.com
Hi Vaishaal,

On Wednesday, August 15, 2012 7:02:11 PM UTC+1, Vaishaal Shankar wrote:
I just wrote a script that switched the bluetooth drivers on the time of launching my app. Yeah I got lots of errors in bluetooth in general, but it seemed to work for my app just when the old driver was in the folder. I just force my java program to switch it on exit. I know its a TERRIBLE way of doing things. 

it's a nice little hack for people who really need this to work quickly. Thanks for sharing.
 
The real problem stems from the fact that the bluecove xcode package uses some very deprecated libraries (it uses the 10.5 SDK), and mountain lion removed support for those.

How do you know that this is the real problem?
 
I tried updating the code to support a 10.8 sdk, but I'm not an objective-c buff, so it kinda failed. So if anybody can rebuild the bluecove package that would be great :D

I actually haven't installed 10.8 yet, but I managed to get the library compiled with the 10.6 and 10.7 SDKs, both with 32/64bit Intel support. I attached the updated BlueCove library to this post. I have not tested this at all, please let me know if it works.

Thanks,
Uwe
bluecove-2.1.0_10dot6.jar
bluecove-2.1.0_10dot7.jar

Uwe

unread,
Aug 16, 2012, 4:43:21 PM8/16/12
to bluecov...@googlegroups.com
Hi,

the two library builds that I attached to my last post are probably not going to work, at least they didn't for me.
I rebuilt the library on my Mac with the 10.6 SDK, it is attached to this post. This library works for me in the sense that my program doesn't crash. Unfortunately, I currently neither have Mountain Lion installed, nor a Bluetooth device to test this. Please someone test this on Mountain Lion and tell me if it works.

Thanks,
Uwe
bluecove-2.1.0-10dot6.jar

Jesse Scott

unread,
Aug 23, 2012, 4:06:01 PM8/23/12
to bluecov...@googlegroups.com
I'll test right now... where am I replacing this? Inside /Resources in the app ?

Jesse Scott

unread,
Aug 23, 2012, 4:11:55 PM8/23/12
to bluecov...@googlegroups.com
Replacing your jar in /Contents/Resources/Java crashes on launch 
(ie. doesn't even complain about Bluetooth errors)

Here is the error dump:

Process:         WiimoteWhiteboard [646]
Path:            /Users/USER/Desktop/WiimoteWhiteboard.app/Contents/MacOS/WiimoteWhiteboard
Identifier:      org.uweschmidt.wiimote.whiteboard.WiimoteWhiteboard
Version:         1.0.3 (20100605)
Code Type:       X86 (Native)
Parent Process:  launchd [173]
User ID:         501

Date/Time:       2012-08-23 13:11:27.199 -0700
OS Version:      Mac OS X 10.8 (12A269)
Report Version:  10

Interval Since Last Report:          70042 sec
Crashes Since Last Report:           3
Per-App Interval Since Last Report:  14 sec
Per-App Crashes Since Last Report:   3
Anonymous UUID:                      C24A5839-F8A6-4B25-AEEA-164397CAC8C7

Crashed Thread:  27

Exception Type:  EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000002, 0x0000000000000000

Dyld Error Message:
  Symbol not found: _IOBluetoothLocalDeviceReadSupportedFeatures
  Referenced from: /private/var/folders/*/libbluecove.jnilib
  Expected in: /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth

Thread 0:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   com.apple.CoreFoundation       0x93964cc9 __CFRunLoopServiceMachPort + 185
3   com.apple.CoreFoundation       0x9396a6af __CFRunLoopRun + 1247
4   com.apple.CoreFoundation       0x93969d6a CFRunLoopRunSpecific + 378
5   com.apple.CoreFoundation       0x93969bdb CFRunLoopRunInMode + 123
6   com.apple.HIToolbox           0x93ba48aa RunCurrentEventLoopInMode + 242
7   com.apple.HIToolbox           0x93ba4619 ReceiveNextEventCommon + 374
8   com.apple.HIToolbox           0x93ba4494 BlockUntilNextEventMatchingListInMode + 88
9   com.apple.AppKit               0x94283a5a _DPSNextEvent + 724
10  com.apple.AppKit               0x9428328c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
11  libawt.jnilib                 0x12c04275 -[NSApplicationAWT nextEventMatchingMask:untilDate:inMode:dequeue:] + 132
12  com.apple.AppKit               0x942796dc -[NSApplication run] + 855
13  libawt.jnilib                 0x12c02598 +[AWTStarter startAWT:] + 2019
14  libawt.jnilib                 0x12c01d65 -[CPerformer perform] + 259
15  libobjc.A.dylib               0x91ddc5d3 -[NSObject performSelector:withObject:] + 70
16  com.apple.Foundation           0x999b9200 __NSThreadPerformPerform + 395
17  com.apple.CoreFoundation       0x93944dcf __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
18  com.apple.CoreFoundation       0x939447f9 __CFRunLoopDoSources0 + 233
19  com.apple.CoreFoundation       0x9396a576 __CFRunLoopRun + 934
20  com.apple.CoreFoundation       0x93969d6a CFRunLoopRunSpecific + 378
21  com.apple.CoreFoundation       0x93969bdb CFRunLoopRunInMode + 123
22  com.apple.JavaApplicationLauncher 0x00006268 startupJava(LauncherArgsStruct*) + 304
23  com.apple.JavaApplicationLauncher 0x00009095 launchJavaApplicationWithJVMInfo + 1401
24  com.apple.JavaApplicationLauncher 0x0000599f launchJavaApplication + 39
25  org.uweschmidt.wiimote.whiteboard.WiimoteWhiteboard 0x00001e3a 0x1000 + 3642
26  org.uweschmidt.wiimote.whiteboard.WiimoteWhiteboard 0x00001c99 0x1000 + 3225
27  org.uweschmidt.wiimote.whiteboard.WiimoteWhiteboard 0x00001bc8 0x1000 + 3016

Thread 1:
0   libsystem_kernel.dylib         0x915e00ee __workq_kernreturn + 10
1   libsystem_c.dylib             0x97c6604c _pthread_workq_return + 45
2   libsystem_c.dylib             0x97c65e19 _pthread_wqthread + 448
3   libsystem_c.dylib             0x97c4dcca start_wqthread + 30

Thread 2:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib         0x915e09ae kevent + 10
1   libdispatch.dylib             0x902cfcc5 _dispatch_mgr_invoke + 993
2   libdispatch.dylib             0x902cf7fd _dispatch_mgr_thread + 53

Thread 3:
0   libsystem_kernel.dylib         0x915e00ee __workq_kernreturn + 10
1   libsystem_c.dylib             0x97c6604c _pthread_workq_return + 45
2   libsystem_c.dylib             0x97c65e19 _pthread_wqthread + 448
3   libsystem_c.dylib             0x97c4dcca start_wqthread + 30

Thread 4:
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014836 0x4000000 + 84022
3   libjvm.dylib                   0x04014772 0x4000000 + 83826
4   libjvm.dylib                   0x04014638 0x4000000 + 83512
5   libjvm.dylib                   0x0401417d 0x4000000 + 82301
6   libjvm.dylib                   0x04013f6d 0x4000000 + 81773
7   libjvm.dylib                   0x040d48a2 0x4000000 + 870562
8   libjvm.dylib                   0x040d412f 0x4000000 + 868655
9   com.apple.JavaApplicationLauncher 0x0000824c startJavaApplication + 8039
10  com.apple.JavaApplicationLauncher 0x000062e3 runJava(LauncherArgsStruct*) + 83
11  com.apple.JavaApplicationLauncher 0x00006288 java_main_stub(void*) + 17
12  libsystem_c.dylib             0x97c63557 _pthread_start + 344
13  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 5:: Java: Exception Handler Thread
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libsystem_kernel.dylib         0x915dd4f7 mach_msg_server + 287
3   libjvm.dylib                   0x040157ca 0x4000000 + 88010
4   libjvm.dylib                   0x04015653 0x4000000 + 87635
5   libjvm.dylib                   0x040140dc 0x4000000 + 82140
6   libsystem_c.dylib             0x97c63557 _pthread_start + 344
7   libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 6:: Java: Gang worker#0 (Parallel GC Threads)
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014836 0x4000000 + 84022
3   libjvm.dylib                   0x04014772 0x4000000 + 83826
4   libjvm.dylib                   0x04014638 0x4000000 + 83512
5   libjvm.dylib                   0x0401417d 0x4000000 + 82301
6   libjvm.dylib                   0x04014007 0x4000000 + 81927
7   libjvm.dylib                   0x0402bab5 0x4000000 + 178869
8   libjvm.dylib                   0x0402b99f 0x4000000 + 178591
9   libjvm.dylib                   0x040140dc 0x4000000 + 82140
10  libsystem_c.dylib             0x97c63557 _pthread_start + 344
11  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 7:: Java: Gang worker#1 (Parallel GC Threads)
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014836 0x4000000 + 84022
3   libjvm.dylib                   0x04014772 0x4000000 + 83826
4   libjvm.dylib                   0x04014638 0x4000000 + 83512
5   libjvm.dylib                   0x0401417d 0x4000000 + 82301
6   libjvm.dylib                   0x04014007 0x4000000 + 81927
7   libjvm.dylib                   0x0402bab5 0x4000000 + 178869
8   libjvm.dylib                   0x0402b99f 0x4000000 + 178591
9   libjvm.dylib                   0x040140dc 0x4000000 + 82140
10  libsystem_c.dylib             0x97c63557 _pthread_start + 344
11  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 8:: Java: Gang worker#2 (Parallel GC Threads)
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014836 0x4000000 + 84022
3   libjvm.dylib                   0x04014772 0x4000000 + 83826
4   libjvm.dylib                   0x04014638 0x4000000 + 83512
5   libjvm.dylib                   0x0401417d 0x4000000 + 82301
6   libjvm.dylib                   0x04014007 0x4000000 + 81927
7   libjvm.dylib                   0x0402bab5 0x4000000 + 178869
8   libjvm.dylib                   0x0402b99f 0x4000000 + 178591
9   libjvm.dylib                   0x040140dc 0x4000000 + 82140
10  libsystem_c.dylib             0x97c63557 _pthread_start + 344
11  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 9:: Java: Gang worker#3 (Parallel GC Threads)
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014836 0x4000000 + 84022
3   libjvm.dylib                   0x04014772 0x4000000 + 83826
4   libjvm.dylib                   0x04014638 0x4000000 + 83512
5   libjvm.dylib                   0x0401417d 0x4000000 + 82301
6   libjvm.dylib                   0x04014007 0x4000000 + 81927
7   libjvm.dylib                   0x0402bab5 0x4000000 + 178869
8   libjvm.dylib                   0x0402b99f 0x4000000 + 178591
9   libjvm.dylib                   0x040140dc 0x4000000 + 82140
10  libsystem_c.dylib             0x97c63557 _pthread_start + 344
11  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 10:: Java: Concurrent Mark-Sweep GC Thread
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014906 0x4000000 + 84230
3   libjvm.dylib                   0x0403241a 0x4000000 + 205850
4   libjvm.dylib                   0x04014654 0x4000000 + 83540
5   libjvm.dylib                   0x0401417d 0x4000000 + 82301
6   libjvm.dylib                   0x04014007 0x4000000 + 81927
7   libjvm.dylib                   0x0413d241 0x4000000 + 1299009
8   libjvm.dylib                   0x0413d1af 0x4000000 + 1298863
9   libjvm.dylib                   0x04032235 0x4000000 + 205365
10  libjvm.dylib                   0x040140dc 0x4000000 + 82140
11  libsystem_c.dylib             0x97c63557 _pthread_start + 344
12  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 11:: Java: VM Thread
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014906 0x4000000 + 84230
3   libjvm.dylib                   0x0403241a 0x4000000 + 205850
4   libjvm.dylib                   0x04014654 0x4000000 + 83540
5   libjvm.dylib                   0x0401417d 0x4000000 + 82301
6   libjvm.dylib                   0x04014007 0x4000000 + 81927
7   libjvm.dylib                   0x040ac91a 0x4000000 + 706842
8   libjvm.dylib                   0x040ac5c3 0x4000000 + 705987
9   libjvm.dylib                   0x040140dc 0x4000000 + 82140
10  libsystem_c.dylib             0x97c63557 _pthread_start + 344
11  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 12:: Java: Reference Handler
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014836 0x4000000 + 84022
3   libjvm.dylib                   0x04014772 0x4000000 + 83826
4   libjvm.dylib                   0x040bb4ec 0x4000000 + 767212
5   libjvm.dylib                   0x040ba9ee 0x4000000 + 764398
6   libjvm.dylib                   0x040ba6e0 JVM_MonitorWait + 203
7   libjvmlinkage.dylib           0x00086dd5 JVM_MonitorWait + 69
8   ???                           0x0580b9d9 0 + 92322265
9   ???                           0x05803e31 0 + 92290609
10  ???                           0x05803e31 0 + 92290609
11  ???                           0x05801374 0 + 92279668
12  libjvm.dylib                   0x040adc57 0x4000000 + 711767
13  libjvm.dylib                   0x040ad9c9 0x4000000 + 711113
14  libjvm.dylib                   0x040ba391 0x4000000 + 762769
15  libjvm.dylib                   0x040ba221 0x4000000 + 762401
16  libjvm.dylib                   0x040ba19f 0x4000000 + 762271
17  libjvm.dylib                   0x040b9ff9 0x4000000 + 761849
18  libjvm.dylib                   0x040b9e37 0x4000000 + 761399
19  libjvm.dylib                   0x040140dc 0x4000000 + 82140
20  libsystem_c.dylib             0x97c63557 _pthread_start + 344
21  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 13:: Java: Finalizer
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014836 0x4000000 + 84022
3   libjvm.dylib                   0x04014772 0x4000000 + 83826
4   libjvm.dylib                   0x040bb4ec 0x4000000 + 767212
5   libjvm.dylib                   0x040ba9ee 0x4000000 + 764398
6   libjvm.dylib                   0x040ba6e0 JVM_MonitorWait + 203
7   libjvmlinkage.dylib           0x00086dd5 JVM_MonitorWait + 69
8   ???                           0x0580b9d9 0 + 92322265
9   ???                           0x05803e31 0 + 92290609
10  ???                           0x05803f97 0 + 92290967
11  ???                           0x05803f97 0 + 92290967
12  ???                           0x05801374 0 + 92279668
13  libjvm.dylib                   0x040adc57 0x4000000 + 711767
14  libjvm.dylib                   0x040ad9c9 0x4000000 + 711113
15  libjvm.dylib                   0x040ba391 0x4000000 + 762769
16  libjvm.dylib                   0x040ba221 0x4000000 + 762401
17  libjvm.dylib                   0x040ba19f 0x4000000 + 762271
18  libjvm.dylib                   0x040b9ff9 0x4000000 + 761849
19  libjvm.dylib                   0x040b9e37 0x4000000 + 761399
20  libjvm.dylib                   0x040140dc 0x4000000 + 82140
21  libsystem_c.dylib             0x97c63557 _pthread_start + 344
22  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 14:: Java: Surrogate Locker Thread (Concurrent GC)
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014836 0x4000000 + 84022
3   libjvm.dylib                   0x04014772 0x4000000 + 83826
4   libjvm.dylib                   0x04014638 0x4000000 + 83512
5   libjvm.dylib                   0x0401417d 0x4000000 + 82301
6   libjvm.dylib                   0x04013f4a 0x4000000 + 81738
7   libjvm.dylib                   0x040cb320 0x4000000 + 832288
8   libjvm.dylib                   0x040cb264 0x4000000 + 832100
9   libjvm.dylib                   0x040b9ff9 0x4000000 + 761849
10  libjvm.dylib                   0x040b9e37 0x4000000 + 761399
11  libjvm.dylib                   0x040140dc 0x4000000 + 82140
12  libsystem_c.dylib             0x97c63557 _pthread_start + 344
13  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 15:: Java: Signal Dispatcher
0   libsystem_kernel.dylib         0x915dd80e semaphore_wait_trap + 10
1   libjvm.dylib                   0x040cbc06 0x4000000 + 834566
2   libjvm.dylib                   0x040cb5e4 0x4000000 + 832996
3   libjvm.dylib                   0x040b9ff9 0x4000000 + 761849
4   libjvm.dylib                   0x040b9e37 0x4000000 + 761399
5   libjvm.dylib                   0x040140dc 0x4000000 + 82140
6   libsystem_c.dylib             0x97c63557 _pthread_start + 344
7   libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 16:: Java: C1 CompilerThread0
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014836 0x4000000 + 84022
3   libjvm.dylib                   0x04014772 0x4000000 + 83826
4   libjvm.dylib                   0x04014638 0x4000000 + 83512
5   libjvm.dylib                   0x0401417d 0x4000000 + 82301
6   libjvm.dylib                   0x04013f4a 0x4000000 + 81738
7   libjvm.dylib                   0x040d34b6 0x4000000 + 865462
8   libjvm.dylib                   0x040ccddc 0x4000000 + 839132
9   libjvm.dylib                   0x040ccb86 0x4000000 + 838534
10  libjvm.dylib                   0x040b9ff9 0x4000000 + 761849
11  libjvm.dylib                   0x040b9e37 0x4000000 + 761399
12  libjvm.dylib                   0x040140dc 0x4000000 + 82140
13  libsystem_c.dylib             0x97c63557 _pthread_start + 344
14  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 17:: Java: Low Memory Detector
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014836 0x4000000 + 84022
3   libjvm.dylib                   0x04014772 0x4000000 + 83826
4   libjvm.dylib                   0x04014638 0x4000000 + 83512
5   libjvm.dylib                   0x0401417d 0x4000000 + 82301
6   libjvm.dylib                   0x04014007 0x4000000 + 81927
7   libjvm.dylib                   0x040cdac4 0x4000000 + 842436
8   libjvm.dylib                   0x040b9ff9 0x4000000 + 761849
9   libjvm.dylib                   0x040b9e37 0x4000000 + 761399
10  libjvm.dylib                   0x040140dc 0x4000000 + 82140
11  libsystem_c.dylib             0x97c63557 _pthread_start + 344
12  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 18:: Java: VM Periodic Task Thread
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014906 0x4000000 + 84230
3   libjvm.dylib                   0x0403241a 0x4000000 + 205850
4   libjvm.dylib                   0x040d0565 0x4000000 + 853349
5   libjvm.dylib                   0x040140dc 0x4000000 + 82140
6   libsystem_c.dylib             0x97c63557 _pthread_start + 344
7   libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 19:: Java: Timer-0
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014906 0x4000000 + 84230
3   libjvm.dylib                   0x0403241a 0x4000000 + 205850
4   libjvm.dylib                   0x040bb507 0x4000000 + 767239
5   libjvm.dylib                   0x040ba9ee 0x4000000 + 764398
6   libjvm.dylib                   0x040ba6e0 JVM_MonitorWait + 203
7   libjvmlinkage.dylib           0x00086dd5 JVM_MonitorWait + 69
8   ???                           0x0580b9d9 0 + 92322265
9   ???                           0x05803e31 0 + 92290609
10  ???                           0x05803e31 0 + 92290609
11  ???                           0x05801374 0 + 92279668
12  libjvm.dylib                   0x040adc57 0x4000000 + 711767
13  libjvm.dylib                   0x040ad9c9 0x4000000 + 711113
14  libjvm.dylib                   0x040ba391 0x4000000 + 762769
15  libjvm.dylib                   0x040ba221 0x4000000 + 762401
16  libjvm.dylib                   0x040ba19f 0x4000000 + 762271
17  libjvm.dylib                   0x040b9ff9 0x4000000 + 761849
18  libjvm.dylib                   0x040b9e37 0x4000000 + 761399
19  libjvm.dylib                   0x040140dc 0x4000000 + 82140
20  libsystem_c.dylib             0x97c63557 _pthread_start + 344
21  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 20:
0   libsystem_kernel.dylib         0x915e00ee __workq_kernreturn + 10
1   libsystem_c.dylib             0x97c6604c _pthread_workq_return + 45
2   libsystem_c.dylib             0x97c65e19 _pthread_wqthread + 448
3   libsystem_c.dylib             0x97c4dcca start_wqthread + 30

Thread 21:: Java: AWT-Shutdown
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014836 0x4000000 + 84022
3   libjvm.dylib                   0x04014772 0x4000000 + 83826
4   libjvm.dylib                   0x040bb4ec 0x4000000 + 767212
5   libjvm.dylib                   0x040ba9ee 0x4000000 + 764398
6   libjvm.dylib                   0x040ba6e0 JVM_MonitorWait + 203
7   libjvmlinkage.dylib           0x00086dd5 JVM_MonitorWait + 69
8   ???                           0x0580b9d9 0 + 92322265
9   ???                           0x05803e31 0 + 92290609
10  ???                           0x05803e31 0 + 92290609
11  ???                           0x0580430d 0 + 92291853
12  ???                           0x05801374 0 + 92279668
13  libjvm.dylib                   0x040adc57 0x4000000 + 711767
14  libjvm.dylib                   0x040ad9c9 0x4000000 + 711113
15  libjvm.dylib                   0x040ba391 0x4000000 + 762769
16  libjvm.dylib                   0x040ba221 0x4000000 + 762401
17  libjvm.dylib                   0x040ba19f 0x4000000 + 762271
18  libjvm.dylib                   0x040b9ff9 0x4000000 + 761849
19  libjvm.dylib                   0x040b9e37 0x4000000 + 761399
20  libjvm.dylib                   0x040140dc 0x4000000 + 82140
21  libsystem_c.dylib             0x97c63557 _pthread_start + 344
22  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 22:
0   libsystem_kernel.dylib         0x915e00ee __workq_kernreturn + 10
1   libsystem_c.dylib             0x97c6604c _pthread_workq_return + 45
2   libsystem_c.dylib             0x97c65e19 _pthread_wqthread + 448
3   libsystem_c.dylib             0x97c4dcca start_wqthread + 30

Thread 23:
0   libsystem_kernel.dylib         0x915e00ee __workq_kernreturn + 10
1   libsystem_c.dylib             0x97c6604c _pthread_workq_return + 45
2   libsystem_c.dylib             0x97c65e19 _pthread_wqthread + 448
3   libsystem_c.dylib             0x97c4dcca start_wqthread + 30

Thread 24:: Java: AWT-EventQueue-0
0   libsystem_kernel.dylib         0x915df8e2 __psynch_cvwait + 10
1   libsystem_c.dylib             0x97c68220 _pthread_cond_wait + 833
2   libsystem_c.dylib             0x97cee0ad pthread_cond_wait$UNIX2003 + 71
3   com.apple.CoreServices.CarbonCore 0x9050349e TSWaitOnCondition + 128
4   com.apple.CoreServices.CarbonCore 0x9050369a TSWaitOnConditionTimedRelative + 146
5   com.apple.CoreServices.CarbonCore 0x904d5e04 MPWaitForEvent + 316
6   libbluecove.jnilib             0x183d7b80 synchronousBTOperation(Runnable*) + 180
7   libbluecove.jnilib             0x183d8fb7 Java_com_intel_bluetooth_BluetoothStackOSX_isLocalDeviceFeatureParkMode + 218
8   ???                           0x0580b9d9 0 + 92322265
9   ???                           0x0580405d 0 + 92291165
10  ???                           0x05804473 0 + 92292211
11  ???                           0x05803e31 0 + 92290609
12  ???                           0x05803f97 0 + 92290967
13  ???                           0x05803f97 0 + 92290967
14  ???                           0x05801374 0 + 92279668
15  libjvm.dylib                   0x040adc57 0x4000000 + 711767
16  libjvm.dylib                   0x040ad9c9 0x4000000 + 711113
17  libjvm.dylib                   0x040ad99b 0x4000000 + 711067
18  libjvm.dylib                   0x040b93a3 JVM_DoPrivileged + 653
19  libjvmlinkage.dylib           0x00089633 JVM_DoPrivileged + 99
20  libjava.jnilib                 0x000d4ca6 Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedExceptionAction_2Ljava_security_AccessControlContext_2 + 46
21  ???                           0x0580b9d9 0 + 92322265
22  ???                           0x05803f97 0 + 92290967
23  ???                           0x05803f97 0 + 92290967
24  ???                           0x05803f97 0 + 92290967
25  ???                           0x05803f97 0 + 92290967
26  ???                           0x05803f97 0 + 92290967
27  ???                           0x05801374 0 + 92279668
28  libjvm.dylib                   0x040adc57 0x4000000 + 711767
29  libjvm.dylib                   0x040ad9c9 0x4000000 + 711113
30  libjvm.dylib                   0x040ad99b 0x4000000 + 711067
31  libjvm.dylib                   0x040ad958 0x4000000 + 711000
32  libjvm.dylib                   0x040ad886 0x4000000 + 710790
33  libjvm.dylib                   0x040ad579 0x4000000 + 710009
34  libjvm.dylib                   0x040acedd 0x4000000 + 708317
35  libjvm.dylib                   0x040af860 0x4000000 + 718944
36  libjvm.dylib                   0x040aea69 0x4000000 + 715369
37  libjvm.dylib                   0x040ae935 0x4000000 + 715061
38  libjvm.dylib                   0x040ae451 0x4000000 + 713809
39  ???                           0x05811f68 0 + 92348264
40  ???                           0x05803e31 0 + 92290609
41  ???                           0x05803e31 0 + 92290609
42  ???                           0x05803e31 0 + 92290609
43  ???                           0x0580430d 0 + 92291853
44  ???                           0x0580430d 0 + 92291853
45  ???                           0x05803e31 0 + 92290609
46  ???                           0x05803e31 0 + 92290609
47  ???                           0x05803f97 0 + 92290967
48  ???                           0x05801374 0 + 92279668
49  libjvm.dylib                   0x040adc57 0x4000000 + 711767
50  libjvm.dylib                   0x040ad9c9 0x4000000 + 711113
51  libjvm.dylib                   0x040ad99b 0x4000000 + 711067
52  libjvm.dylib                   0x040b93a3 JVM_DoPrivileged + 653
53  libjvmlinkage.dylib           0x00089633 JVM_DoPrivileged + 99
54  libjava.jnilib                 0x000d2193 Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2Ljava_security_AccessControlContext_2 + 46
55  ???                           0x0580b9d9 0 + 92322265
56  ???                           0x05803f97 0 + 92290967
57  ???                           0x05804473 0 + 92292211
58  ???                           0x05803e31 0 + 92290609
59  ???                           0x0580405d 0 + 92291165
60  ???                           0x05803e31 0 + 92290609
61  ???                           0x05803e31 0 + 92290609
62  ???                           0x05803e31 0 + 92290609
63  ???                           0x05803e31 0 + 92290609
64  ???                           0x05801374 0 + 92279668
65  libjvm.dylib                   0x040adc57 0x4000000 + 711767
66  libjvm.dylib                   0x040ad9c9 0x4000000 + 711113
67  libjvm.dylib                   0x040ba391 0x4000000 + 762769
68  libjvm.dylib                   0x040ba221 0x4000000 + 762401
69  libjvm.dylib                   0x040ba19f 0x4000000 + 762271
70  libjvm.dylib                   0x040b9ff9 0x4000000 + 761849
71  libjvm.dylib                   0x040b9e37 0x4000000 + 761399
72  libjvm.dylib                   0x040140dc 0x4000000 + 82140
73  libsystem_c.dylib             0x97c63557 _pthread_start + 344
74  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 25:: Java: Java2D Disposer
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014836 0x4000000 + 84022
3   libjvm.dylib                   0x04014772 0x4000000 + 83826
4   libjvm.dylib                   0x040bb4ec 0x4000000 + 767212
5   libjvm.dylib                   0x040ba9ee 0x4000000 + 764398
6   libjvm.dylib                   0x040ba6e0 JVM_MonitorWait + 203
7   libjvmlinkage.dylib           0x00086dd5 JVM_MonitorWait + 69
8   ???                           0x0580b9d9 0 + 92322265
9   ???                           0x05803e31 0 + 92290609
10  ???                           0x05803f97 0 + 92290967
11  ???                           0x05803f97 0 + 92290967
12  ???                           0x0580430d 0 + 92291853
13  ???                           0x05801374 0 + 92279668
14  libjvm.dylib                   0x040adc57 0x4000000 + 711767
15  libjvm.dylib                   0x040ad9c9 0x4000000 + 711113
16  libjvm.dylib                   0x040ba391 0x4000000 + 762769
17  libjvm.dylib                   0x040ba221 0x4000000 + 762401
18  libjvm.dylib                   0x040ba19f 0x4000000 + 762271
19  libjvm.dylib                   0x040b9ff9 0x4000000 + 761849
20  libjvm.dylib                   0x040b9e37 0x4000000 + 761399
21  libjvm.dylib                   0x040140dc 0x4000000 + 82140
22  libsystem_c.dylib             0x97c63557 _pthread_start + 344
23  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 26:: Java: Image Fetcher 0
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014906 0x4000000 + 84230
3   libjvm.dylib                   0x0403241a 0x4000000 + 205850
4   libjvm.dylib                   0x040bb507 0x4000000 + 767239
5   libjvm.dylib                   0x040ba9ee 0x4000000 + 764398
6   libjvm.dylib                   0x040ba6e0 JVM_MonitorWait + 203
7   libjvmlinkage.dylib           0x00086dd5 JVM_MonitorWait + 69
8   ???                           0x0580b9d9 0 + 92322265
9   ???                           0x05803e31 0 + 92290609
10  ???                           0x05803f97 0 + 92290967
11  ???                           0x05803e31 0 + 92290609
12  ???                           0x05801374 0 + 92279668
13  libjvm.dylib                   0x040adc57 0x4000000 + 711767
14  libjvm.dylib                   0x040ad9c9 0x4000000 + 711113
15  libjvm.dylib                   0x040ba391 0x4000000 + 762769
16  libjvm.dylib                   0x040ba221 0x4000000 + 762401
17  libjvm.dylib                   0x040ba19f 0x4000000 + 762271
18  libjvm.dylib                   0x040b9ff9 0x4000000 + 761849
19  libjvm.dylib                   0x040b9e37 0x4000000 + 761399
20  libjvm.dylib                   0x040140dc 0x4000000 + 82140
21  libsystem_c.dylib             0x97c63557 _pthread_start + 344
22  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 27 Crashed:
0   dyld                           0x8fe890b5 dyld_fatal_error + 1
1   dyld                           0x8fe8c01b dyld::fastBindLazySymbol(ImageLoader**, unsigned long) + 150
2   libdyld.dylib                 0x97e2476c dyld_stub_binder_ + 20
3   libbluecove.jnilib             0x183d8d79 GetBluetoothHCISupportedFeatures::run() + 41
4   libbluecove.jnilib             0x183d7a8b performBTOperationCallBack(void*) + 147
5   com.apple.CoreFoundation       0x93944dcf __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
6   com.apple.CoreFoundation       0x939447f9 __CFRunLoopDoSources0 + 233
7   com.apple.CoreFoundation       0x9396a576 __CFRunLoopRun + 934
8   com.apple.CoreFoundation       0x93969d6a CFRunLoopRunSpecific + 378
9   com.apple.CoreFoundation       0x93979781 CFRunLoopRun + 129
10  libbluecove.jnilib             0x183d7980 oneNativeThreadMain(void*) + 328
11  libsystem_c.dylib             0x97c63557 _pthread_start + 344
12  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 28:: Java: BluecoveAsynchronousShutdownThread
0   libsystem_kernel.dylib         0x915dd7d2 mach_msg_trap + 10
1   libsystem_kernel.dylib         0x915dccb0 mach_msg + 68
2   libjvm.dylib                   0x04014836 0x4000000 + 84022
3   libjvm.dylib                   0x04014772 0x4000000 + 83826
4   libjvm.dylib                   0x040bb4ec 0x4000000 + 767212
5   libjvm.dylib                   0x040ba9ee 0x4000000 + 764398
6   libjvm.dylib                   0x040ba6e0 JVM_MonitorWait + 203
7   libjvmlinkage.dylib           0x00086dd5 JVM_MonitorWait + 69
8   ???                           0x0580b9d9 0 + 92322265
9   ???                           0x05803e31 0 + 92290609
10  ???                           0x05803e31 0 + 92290609
11  ???                           0x05801374 0 + 92279668
12  libjvm.dylib                   0x040adc57 0x4000000 + 711767
13  libjvm.dylib                   0x040ad9c9 0x4000000 + 711113
14  libjvm.dylib                   0x040ba391 0x4000000 + 762769
15  libjvm.dylib                   0x040ba221 0x4000000 + 762401
16  libjvm.dylib                   0x040ba19f 0x4000000 + 762271
17  libjvm.dylib                   0x040b9ff9 0x4000000 + 761849
18  libjvm.dylib                   0x040b9e37 0x4000000 + 761399
19  libjvm.dylib                   0x040140dc 0x4000000 + 82140
20  libsystem_c.dylib             0x97c63557 _pthread_start + 344
21  libsystem_c.dylib             0x97c4dcee thread_start + 34

Thread 27 crashed with X86 Thread State (32-bit):
  eax: 0x8fe959c4  ebx: 0x000004b4  ecx: 0x00000000  edx: 0x0000010c
  edi: 0x8fe89f71  esi: 0x8febc07c  ebp: 0xb1926048  esp: 0xb192602c
   ss: 0x00000023  efl: 0x00000246  eip: 0x8fe890b5   cs: 0x0000001b
   ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
  cr2: 0x047f9000
Logical CPU: 2

Binary Images:
    0x1000 -     0x1ff7 +org.uweschmidt.wiimote.whiteboard.WiimoteWhiteboard (1.0.3 - 20100605) <0CBE7A1A-EB48-E17B-B911-7AC1CB35B067> /Users/USER/Desktop/WiimoteWhiteboard.app/Contents/MacOS/WiimoteWhiteboard
    0x5000 -     0xefff  com.apple.JavaApplicationLauncher (14.3.0 - 14.3.0) <6AE5B048-2054-33A3-BD93-3454C695D2DA> /System/Library/PrivateFrameworks/JavaApplicationLauncher.framework/Versions/A/JavaApplicationLauncher
   0x16000 -    0x1affd  com.apple.JavaVM (14.3.0 - 14.3.0) <1163556C-5C1D-3C5A-8767-682DAE7D3174> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
   0x22000 -    0x26fff  JavaLaunching (24) <A0441F95-2169-3682-B9DD-0A33F3B8BC98> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunching
   0x86000 -    0x8dffb  libjvmlinkage.dylib (1) <6A77EDD1-D1B2-39A9-A637-67BC1D7349F9> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libjvmlinkage.dylib
   0xb0000 -    0xb7fff  libverify.dylib (1.0 - 1.0) <832C9B30-D9EF-3A78-87D1-39B5B59AC38A> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libverify.dylib
   0xbc000 -    0xc4fff  JavaNativeFoundation (1) <255E405D-7805-3461-A678-47692E309629> /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.framework/Versions/A/JavaNativeFoundation
   0xcd000 -    0xeafff  libjava.jnilib (1) <EE1F40E2-5110-3A6D-AA0E-2FC16F1E7AD9> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libjava.jnilib
  0x700000 -   0x707fff  com.apple.java.JavaRuntimeSupport (14.3.0 - 14.3.0) <C73FF989-AEBB-3333-BEB5-CF6AE300B993> /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaRuntimeSupport.framework/Versions/A/JavaRuntimeSupport
  0x71c000 -   0x728fff  libzip.jnilib (1) <2C56697E-3280-377C-BF3E-9FC09C627B02> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libzip.jnilib
 0x22f5000 -  0x22f6ffd  liblauncher.jnilib (1) <3DF76949-8020-3515-80A9-F17EDDA7C43C> /System/Library/PrivateFrameworks/JavaApplicationLauncher.framework/Versions/A/Resources/liblauncher.jnilib
 0x2797000 -  0x27a4ffb  com.apple.Librarian (1.1 - 1) <C8D82AA3-AE5E-3B6D-A8D1-847856057186> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
 0x4000000 -  0x4361ff2  libjvm.dylib (1) <156F6F75-DEFB-3C0F-97F1-9EA1F5B1016C> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/bundle/Libraries/libjvm.dylib
 0x47f0000 -  0x47f3ffc  libnio.jnilib (1) <A824D4DB-550A-3D88-BAC1-ED8668C2542E> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libnio.jnilib
 0x7ca5000 -  0x7cb1ff3  libnet.jnilib (1) <74C571DC-CBED-33C5-999E-5C1920D751C8> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libnet.jnilib
0x12c00000 - 0x12db2ff7  libawt.jnilib (1) <8C656062-4295-3218-9CF9-FD64A8081EE3> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libawt.jnilib
0x14347000 - 0x1439effb  libfontmanager.jnilib (1) <B6C8119A-94CB-3702-8262-9A312073DDD6> /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libfontmanager.jnilib
0x143b6000 - 0x143c0fff  com.apple.CoreBluetooth (100.6 - 1) <CE611C93-31FA-3C0E-9193-F6734162004C> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x183d4000 - 0x183eafff +libbluecove.jnilib (1) <D0008BC8-4CF3-35D6-824D-42B762040D07> /var/folders/*/libbluecove.jnilib
0x183fb000 - 0x184c3ff7  com.apple.Bluetooth (4.0.9 - 4.0.9f8) <A7A4CC3C-244D-309D-AC92-DAE6BFC59184> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x8fe88000 - 0x8febae57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
0x90032000 - 0x90032fff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
0x9008b000 - 0x90100ff7  com.apple.ApplicationServices.ATS (332 - 341) <472F564A-BD46-30C3-92F5-87273A512910> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x90168000 - 0x9019bff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x901b6000 - 0x901b7fff  libsystem_sandbox.dylib (220) <4E42390B-25EC-3530-AF01-337E430C16EB> /usr/lib/system/libsystem_sandbox.dylib
0x9022d000 - 0x9026fff7  com.apple.RemoteViewServices (2.0 - 80.3) <EE36AF6C-E574-3F48-9AC3-E8C8295739FF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x902cb000 - 0x902ddff7  libdispatch.dylib (228.18) <833C83BE-278C-353E-AC6D-9B85FAC50A1D> /usr/lib/system/libdispatch.dylib
0x902de000 - 0x903f9ff3  com.apple.desktopservices (1.7.0 - 1.7.0) <62495AB3-8FD5-39D0-A881-07BA77139EAA> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x903fa000 - 0x903fdfff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x90440000 - 0x90745fff  com.apple.CoreServices.CarbonCore (1037 - 1037) <92494ADA-2ED1-3141-81B9-23F2C27E779C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x90746000 - 0x90746fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
0x90747000 - 0x90903ffd  libicucore.A.dylib (491.11.1) <DB04A8FD-9BBE-3CBC-869F-8FA855FB43D2> /usr/lib/libicucore.A.dylib
0x90b5c000 - 0x90b5cfff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x90b5d000 - 0x90b8eff7  com.apple.DictionaryServices (1.2 - 184) <9199E88F-2477-3596-9F56-B8E317A7164D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x90bdb000 - 0x90ff8ff3  FaceCoreLight (2.0.1) <3EF03B25-C361-31A6-8704-3FBFFBD0E10B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
0x90ff9000 - 0x91000ff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x91001000 - 0x91001ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <B688A998-93B5-3D9B-BAE4-E49947AA82B4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x91002000 - 0x91009fff  liblaunch.dylib (442.21) <349330F8-1BBF-3B78-AFB2-4F32413CE971> /usr/lib/system/liblaunch.dylib
0x9100a000 - 0x910b8ff3  com.apple.CoreText (260.0 - 275.14) <3CC31B7F-5560-364A-ADFC-31861C3C2328> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x910b9000 - 0x910c5ffc  libkxld.dylib (2050.7.9) <D2892FF5-C00D-3493-8945-5C36733FE9A3> /usr/lib/system/libkxld.dylib
0x910c9000 - 0x91108ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x91115000 - 0x911d3ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x911d4000 - 0x911e2fff  com.apple.opengl (1.8.5 - 1.8.5) <AA14FBC0-8AF3-3CCB-A390-C8F9AE81E1E9> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x911e3000 - 0x911e7ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
0x911e8000 - 0x911fdfff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x911fe000 - 0x91208fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
0x91209000 - 0x9120afff  libdnsinfo.dylib (453.16) <6441AEC9-3916-3BF6-BE54-9C25E2BE61E1> /usr/lib/system/libdnsinfo.dylib
0x9149d000 - 0x9158effc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
0x9158f000 - 0x915cafe7  libGLImage.dylib (8.5) <E5F2D8DE-3053-361A-982B-9BB2AE73E324> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x915cb000 - 0x915e5ffc  libsystem_kernel.dylib (2050.7.9) <81E269C6-0F96-3075-9589-D35657D23CDD> /usr/lib/system/libsystem_kernel.dylib
0x915e6000 - 0x915eefff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x915ef000 - 0x91669ff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x9166a000 - 0x9166afff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
0x9166b000 - 0x91677ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
0x91678000 - 0x9168bff9  com.apple.MultitouchSupport.framework (235.27 - 235.27) <75D9C0FD-6A40-3A9E-8861-C74DBE137CF3> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x9168c000 - 0x91690fff  com.apple.IOSurface (86.0.2 - 86.0.2) <BDF93CE4-9F14-3747-9CD5-FFE71D488BDA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x91691000 - 0x9169ffff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
0x916a0000 - 0x916aafff  libCSync.A.dylib (322) <CD2707A0-48EB-30C5-8431-460663D44A91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x916ab000 - 0x916abfff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x916ac000 - 0x916aefff  libCVMSPluginSupport.dylib (8.5) <9043B315-4E68-3262-A310-76E64F0409C9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x916af000 - 0x9171effb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x9199e000 - 0x919fbfff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x91dbe000 - 0x91ecb15f  libobjc.A.dylib (532) <9663A040-F232-3E2A-8318-AA40B940AF6F> /usr/lib/libobjc.A.dylib
0x91ecc000 - 0x91eccfff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x91ecd000 - 0x91f23ff3  com.apple.HIServices (1.20 - 416) <B23E2C58-A6A5-32B6-811C-0F0551E14483> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x91f29000 - 0x91fc3fff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x91fc6000 - 0x91fe8ff3  libc++abi.dylib (24.2) <4C064BFE-B8B4-35CA-AB3C-F6A47D47A0F2> /usr/lib/libc++abi.dylib
0x91ff9000 - 0x92171ff5  com.apple.QuartzCore (1.8 - 304.0) <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x92172000 - 0x9218ffff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
0x92190000 - 0x92191fff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
0x92192000 - 0x92199ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
0x9219a000 - 0x921a7ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x921a9000 - 0x922b4ff7  libJP2.dylib (843) <D8FE1E1C-D4DC-3465-95C4-AEADD6C2611C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x922e9000 - 0x922f3fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x922f4000 - 0x92302ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
0x92303000 - 0x92323ff7  com.apple.ChunkingLibrary (2.0 - 132) <172C3F7F-CB49-323F-932F-35340999979E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x92324000 - 0x923bcff7  com.apple.CoreServices.OSServices (557 - 557) <219C11A8-8446-336E-B518-F52D1571420F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x923bd000 - 0x923e2ff7  com.apple.CoreVideo (1.8 - 99.0) <7A90C337-4493-3393-9C56-75EB52112D75> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x9245d000 - 0x92486fff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
0x9253f000 - 0x92583fff  libGLU.dylib (8.5) <E4F932FD-A644-354D-8D4E-F337C93AAFC1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x92584000 - 0x9293cffa  libLAPACK.dylib (1073.3) <0F813868-D84F-365D-8A7B-67FDA169F19C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x92a0c000 - 0x92b58ffb  com.apple.CFNetwork (596.0.1 - 596.0.1) <0EC65BE8-5775-37C8-B6C7-8BC7CAECB222> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x92bf3000 - 0x92d2eff7  libBLAS.dylib (1073.3) <804B5AF7-2646-31D1-8875-FCCF158476D4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x92d2f000 - 0x92d71ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
0x92d72000 - 0x92d73fff  libDiagnosticMessagesClient.dylib (7) <B2BC685E-C129-3F6B-9222-AF3CF4F186AC> /usr/lib/libDiagnosticMessagesClient.dylib
0x92d74000 - 0x92da1ffb  com.apple.CoreServicesInternal (153 - 153) <DB105788-CCF5-3678-88C5-65A7267DC581> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x92da8000 - 0x92daffff  libsystem_dnssd.dylib (379.27) <4B3700EA-F14D-3994-BAAB-79BBD33D7305> /usr/lib/system/libsystem_dnssd.dylib
0x92db0000 - 0x92f39ff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x92f46000 - 0x92f4afff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x92f4b000 - 0x92f56fff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
0x92f5e000 - 0x92f6eff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x92f6f000 - 0x92f78ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x92f79000 - 0x92f7affd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x92f7b000 - 0x92fc0ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x92fc3000 - 0x92fcfff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x92fd0000 - 0x93070ff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x93475000 - 0x934c1fff  libcorecrypto.dylib (106) <FAAD1A30-0D84-3A17-AC40-288EF0F529AA> /usr/lib/system/libcorecrypto.dylib
0x934c2000 - 0x934ebff7  libRIP.A.dylib (322) <48626D20-EFD2-3F8C-B458-30514DDD7984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x93534000 - 0x93558ff2  com.apple.framework.familycontrols (4.0 - 400) <A313D83E-5A03-3174-A213-1F7D379040D1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x93559000 - 0x936b0ff7  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <6856CA9B-BF08-341B-AEE9-91CC258D4534> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x936b1000 - 0x936ddff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
0x936de000 - 0x936faff7  libPng.dylib (843) <43C3DD20-4BB2-3429-A40A-7FF9BC50E5FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x936fb000 - 0x93731ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x93732000 - 0x9374fff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
0x93750000 - 0x93765fff  com.apple.speech.synthesis.framework (4.1.10 - 4.1.10) <20E394D6-D9BA-3C1D-993A-533B60EF3B63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x93836000 - 0x93854ffb  com.apple.Ubiquity (1.2 - 234.2) <BEFF43DE-CF72-3E66-90C8-CAECAFD5F3ED> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x93855000 - 0x9385dfff  com.apple.DiskArbitration (2.5 - 2.5) <E49427B0-5317-3DFD-B12E-117402BB19CB> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x9385e000 - 0x938acffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x938ad000 - 0x9390ffff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
0x93913000 - 0x93916ffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x93933000 - 0x93b1affb  com.apple.CoreFoundation (6.8 - 744) <A2BB4949-264A-302B-897E-713860894FE6> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x93b1b000 - 0x93b3ffff  libJPEG.dylib (843) <04383F74-067F-3E98-882F-21F5B9578984> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x93b40000 - 0x93b4cffd  com.apple.CrashReporterSupport (10.8 - 411) <62036837-CFEC-37FD-AEB1-040EF573C2B3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x93b4d000 - 0x93f2fff7  com.apple.HIToolbox (2.0 - 624) <04C20B6A-FE3D-396E-BCAF-AC4DBAB3747E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x9404b000 - 0x9411fff7  com.apple.backup.framework (1.4 - 1.4) <12123FB8-B42D-38B0-8463-6BA375C3C643> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x94120000 - 0x94cd9fff  com.apple.AppKit (6.8 - 1187) <5E13B150-4096-3B61-9DC0-6ABA48F6515B> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x94cda000 - 0x94dd8ff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x94e1a000 - 0x94e33fff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x94e34000 - 0x94e79ff5  com.apple.opencl (2.1.17 - 2.1.17) <921C1549-637A-33D7-A891-834FB9F582C7> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x94e7a000 - 0x95137ff3  com.apple.security (7.0 - 55163.44) <798A1E51-3030-35BD-B5E6-4B6F65469357> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x95138000 - 0x95245ffb  com.apple.ImageIO.framework (3.2.0 - 843) <4BFEFB05-3EE3-36A7-891D-CE03D1DF8125> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x95246000 - 0x95247ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
0x95acf000 - 0x95ae6fff  com.apple.GenerationalStorage (1.1 - 132.1) <4E0F0C47-7796-3152-A77D-F6456287498A> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x95db7000 - 0x95db7ffd  libOpenScriptingUtil.dylib (148) <6B34E8E4-EE31-3E2B-AEB3-8714C3102AED> /usr/lib/libOpenScriptingUtil.dylib
0x95db8000 - 0x95eb0ff2  libsqlite3.dylib (138) <AA00F27E-B72D-31DE-8EE4-985227CC9912> /usr/lib/libsqlite3.dylib
0x95eb1000 - 0x95eb2fff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
0x95eb3000 - 0x95f4afff  com.apple.ink.framework (1.4 - 110) <C01F2572-E7E4-3A6C-B4F2-2F97B4AD43D5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x95f4b000 - 0x95ffeff7  com.apple.coreui (2.0 - 181) <4F071012-F857-367D-B0B8-EAD088A05740> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x95fff000 - 0x96005fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x96032000 - 0x9611bff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
0x9611c000 - 0x96182fff  com.apple.print.framework.PrintCore (8.0 - 387) <84DFC4F0-3186-3C59-9EBD-9EF2C3561A43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x961b3000 - 0x961b9fff  libGFXShared.dylib (8.5) <D2D214E8-A243-3FFD-BA70-D695FF5BD040> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x962b7000 - 0x96531ff3  com.apple.RawCamera.bundle (3.14.2 - 644) <3A5383AC-F30A-3674-88F4-DF82ADE8D73E> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x96583000 - 0x965e7ff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
0x965e8000 - 0x96637ff6  libTIFF.dylib (843) <AA81BA16-8026-35DA-8193-2C8715ACD435> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x96638000 - 0x9663afff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x9663b000 - 0x966a2ff7  com.apple.framework.IOKit (2.0 - 755.9.7) <CB976A7C-2601-3054-BC41-C3AD6896327C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x966a3000 - 0x966fcff7  com.apple.AE (645 - 645) <D4919967-EF16-36BA-9E8A-DA110DE8BB4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x966fd000 - 0x96700ffb  com.apple.TCC (1.0 - 1) <C1B2A1EB-9EA2-3340-8611-F788C87A951F> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x96701000 - 0x96701fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x97105000 - 0x97169fff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x9716a000 - 0x9716bfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
0x9716c000 - 0x9716effb  libRadiance.dylib (843) <6C2B92DB-A537-3618-9E68-F006DF427D2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x9716f000 - 0x971bdffb  com.apple.SystemConfiguration (1.12 - 1.12) <F3C87D17-D5F3-39D3-B6F1-1DF3DBECCBDE> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x971be000 - 0x971dbfff  libxpc.dylib (140.37) <F61095FA-B2CF-3CD8-9088-9D9FC18B38BC> /usr/lib/system/libxpc.dylib
0x97212000 - 0x9728effb  com.apple.Metadata (10.7.0 - 707.1) <E18350AD-CAA9-3323-BDE9-63A688792C6C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x9728f000 - 0x97314ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x97315000 - 0x97339fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x9733a000 - 0x9734cfff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
0x97a60000 - 0x97af2ffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x97af3000 - 0x97af3fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x97afb000 - 0x97b09ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
0x97b0a000 - 0x97bb4ff7  com.apple.LaunchServices (539 - 539) <4C026504-5420-35D7-912E-A584C6F9FFC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x97bb5000 - 0x97bc2fff  libGL.dylib (8.5) <930067EA-F131-336E-BE31-49DD7F6DFB81> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x97bc3000 - 0x97c1efff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x97c1f000 - 0x97c4cffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
0x97c4d000 - 0x97d0affb  libsystem_c.dylib (825.24) <7D90CAC5-EC98-35F8-A52E-81B54F0C7DCC> /usr/lib/system/libsystem_c.dylib
0x97e24000 - 0x97e26fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
0x97e90000 - 0x97e99ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x97e9a000 - 0x97ea4ffc  com.apple.bsd.ServiceManagement (2.0 - 2.0) <D3112172-D3A7-3C9A-825D-5630D47327D1> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x97f91000 - 0x97f94ff9  libCGXType.A.dylib (322) <2090D588-49DD-3DB6-A296-8E7B0FF1482A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x97fd5000 - 0x98266ffb  com.apple.CoreImage (8.0.17 - 1.0.1) <CE54EC11-1C41-3857-B82D-F8B7D1798F42> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x98fa4000 - 0x98fa7ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
0x98fa8000 - 0x98fa8fff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x98fa9000 - 0x98fadffc  libGIF.dylib (843) <355B672B-D07D-36FE-B6B9-142406ACFBA2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x98fae000 - 0x993f0ff3  com.apple.CoreGraphics (1.600.0 - 322) <2E04AAAD-8403-3819-BD6C-9836D42F58B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x993f1000 - 0x99407fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x994df000 - 0x994e2ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
0x9956c000 - 0x99570ffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
0x99571000 - 0x9958efff  com.apple.openscripting (1.3.5 - 148) <3460338D-B686-3C33-B322-DC8391668F8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x9958f000 - 0x995e6ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
0x99851000 - 0x99859fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
0x9985a000 - 0x998c2fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x998c3000 - 0x9991dfff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x9991e000 - 0x99c3bfff  com.apple.Foundation (6.8 - 945) <B6F00754-C3F7-3E33-B708-CCEA2AA3E969> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x99c3c000 - 0x99c3cfff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x99c67000 - 0x99e67ffb  com.apple.CoreData (106 - 407.5) <B4386286-5C67-3134-A5BD-852447DA696E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x9a499000 - 0x9a4daff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
0x9a4db000 - 0x9a4dffff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 2
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 564
    thread_create: 1
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=124.5M resident=92.1M(74%) swapped_out_or_unallocated=32.4M(26%)
Writable regions: Total=369.6M written=25.0M(7%) resident=45.5M(12%) swapped_out=0K(0%) unallocated=324.1M(88%)
 
REGION TYPE                      VIRTUAL
===========                      =======
ATS (font support)                 32.0M
CG backing stores                   224K
CG image                             12K
CG shared images                   1216K
CoreServices                       2956K
Java                              161.1M
Java (reserved)                    40.7M        reserved VM address space (unallocated)
MALLOC                             78.2M
MALLOC guard page                    64K
Mach message (reserved)               8K        reserved VM address space (unallocated)
Memory tag=240                        4K
Memory tag=242                       12K
Memory tag=35                      7232K
Stack                              95.7M
VM_ALLOCATE                        16.1M
__DATA                             5856K
__DATA/__OBJC                       180K
__IMAGE                             528K
__IMPORT                              8K
__LINKEDIT                         32.2M
__OBJC                             1624K
__OBJC/__DATA                        44K
__PAGEZERO                            4K
__TEXT                             92.3M
__UNICODE                           544K
mapped file                       128.9M
shared memory                       308K
===========                      =======
TOTAL                             697.5M
TOTAL, minus reserved VM space    656.8M

Model: MacBookPro6,1, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 4 GB, SMC 1.57f17
Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.81.20)
Bluetooth: Version 4.0.9f8 10405, 2 service, 18 devices, 1 incoming serial ports
Network Service: AirPort, AirPort, en1
Serial ATA Device: ST9500420ASG, 500.11 GB
Serial ATA Device: MATSHITADVD-R   UJ-898
USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0237, 0xfa120000 / 4
USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 7
USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

Jesse Scott

unread,
Aug 23, 2012, 4:25:02 PM8/23/12
to bluecov...@googlegroups.com
Sorry, should have attached that as a file... 

Also, this is with the OSX app.
As for the Cross Platform jar, I know how to unpack and replace the bluecove jar, but I'm not sure how to repackage the WiimoteWhiteboard.jar...

If you want to post a compiled/ant-ed version, i'll test...

~ Jesse

Jesse Scott

unread,
Sep 6, 2012, 4:54:45 PM9/6/12
to bluecov...@googlegroups.com
Can you point to where that code is?
I migh give it a try...

Jesse Scott

unread,
Sep 12, 2012, 2:49:15 PM9/12/12
to bluecov...@googlegroups.com
BUMP

Jesse Scott

unread,
Sep 12, 2012, 3:08:24 PM9/12/12
to bluecov...@googlegroups.com
Hi All,

I admit to being a little confused/stuck.

Vaishaal's fix of replacing the IOBluetooth Framework with the Lion version works in the sense that I no longer get the Bluetooth stack error.
However, when I try to use Uwe's application, it opens but never is able to find a Wiimote...

Vaishaal, can you post a link to your project so that I can test it?

Uwe, can you please respond about the placement of your recompiled Bluecove library (see previous posts).

I have an installation opening tomorrow night that uses this, so I would really appreciate any responses ASAP.

Thanks,

~ Jesse

Uwe

unread,
Sep 12, 2012, 4:10:11 PM9/12/12
to bluecov...@googlegroups.com
Dear Jesse,

I'm sorry for not replying earlier. As far as I can see (without having Mountain Lion installed), the problem is not easily fixed. Apple has removed some deprecated functionality in the Bluetooth framework, on which the BlueCove library relies on. This manifests itself in this relevant part of the error message:

Dyld Error Message:
  Symbol not found: _IOBluetoothLocalDeviceReadSupportedFeatures
  Referenced from: /private/var/folders/*/libbluecove.jnilib
  Expected in: /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth

Apple has removed the function "IOBluetoothLocalDeviceReadSupportedFeatures" from IOBluetooth (along with many others). See this for details: https://developer.apple.com/library/mac/#releasenotes/General/APIDiffsMacOSX10_8/IOBluetooth.html

I thought Vaishaal's fix does work, although it may interferes with other Bluetooth operations. I'm sorry to not be of more help here, but I don't have the time nor Mountain Lion installed. Since you really need this app to work, why can't you switch to a Mac with Lion, or why did you upgrade to Maintain Lion?

Greetings,
Uwe

Jesse Scott

unread,
Sep 12, 2012, 4:55:43 PM9/12/12
to bluecov...@googlegroups.com
Hi Uwe,

No problem, thanks for replying.
Yes, Vaishaal's fix does work, but it seems the WW just gets stuck on searching - maybe it's having difficulties handshaking with the BT device.

As for your recompiled library, can you comment on where to place the new JAR ?
I'm assuming in the OSX app its in /Contents/Resources/Java ?

Do you have a compiled version of the WW Java JAR with your recompiled version of BlueCove ?

I've managed to source an installation machine running an older OS, so the fire is quenched for tomorrow, but I'd love to get this sorted eventually.
I'll work on finding the fix myself after this week as well...

Thanks,

~ Jesse

Uwe

unread,
Sep 12, 2012, 5:25:32 PM9/12/12
to bluecov...@googlegroups.com
Hi Jesse,

On Wednesday, September 12, 2012 9:55:44 PM UTC+1, Jesse Scott wrote:
Hi Uwe,

No problem, thanks for replying.
Yes, Vaishaal's fix does work, but it seems the WW just gets stuck on searching - maybe it's having difficulties handshaking with the BT device.

please open the Log in my application (⌘L) and tell me what you see there when you try to connect the Wiimote. Also, newer Wiimotes (Wii Remote Plus) with integrated Wii Motion Plus don't seem to work, at least the recent models. Futhermore, make sure to not connect the Wiimote by using the Mac Bluetooth's Assistant. It doesn't hurt to delete it from the list of known Bluetooth devices in System Preferences.
 
As for your recompiled library, can you comment on where to place the new JAR ?
I'm assuming in the OSX app its in /Contents/Resources/Java ?

Do you have a compiled version of the WW Java JAR with your recompiled version of BlueCove ?

Don't bother, it won't work anyway for the reason I stated in my earlier message.
If I have a promising fix, I'll post a fully functioning version.
 

I've managed to source an installation machine running an older OS, so the fire is quenched for tomorrow, but I'd love to get this sorted eventually.
I'll work on finding the fix myself after this week as well...

Ok, I'll definitely check this out when I eventually install Mountain Lion, presumably in October or November.
 

Thanks,

~ Jesse

Good luck with your opening tomorrow,

Jesse Scott

unread,
Sep 12, 2012, 7:03:43 PM9/12/12
to bluecov...@googlegroups.com
The Log shows nothing... nothing at all.

~ J

Martin Møller

unread,
Oct 11, 2012, 12:15:47 PM10/11/12
to bluecov...@googlegroups.com
I just tried to replaced the contents of the attached tarball and apparently I am now able to communicate with my NXJ through bluetooth and bluecove. Fantastic!

Martin

Ken W - Nipissing U

unread,
Oct 19, 2012, 10:20:24 AM10/19/12
to bluecov...@googlegroups.com
Hello Uwe, Jesse & Vaishaal,

I have been following the various threads on the matter related to enabling the wiimote whiteboard application to "play nicely" (e.g., work) with the new OSX 10.8.x Mountain Lion (ML. Indeed, it's been a mind bender to see Uwe's application encounter a roadblock such that it is inaccessible for ML users. I'm confident that a fix or workaround will be discovered in the next month or two...perhaps a Christmas present for the wii-mote whiteboard community!

In the meantime, I wanted to share with you a Mac OSX application that uses wiimote technology and bluetooth connectivity (Wiinote by Primate Labs). They were in a similar situation in July when ML was released as their application no longer worked due to bluetooth issues. However, they were successful in coding a solution and their latest version (0.4.0) plays nicely with ML.  Perhaps taking a look at their application (code) may render some steps to allowing the wiimote whiteboard application to rise from the ashes (like the Phoenix) and fly again. Below is the application URL:

Best wishes to the code writers!

Ken Waller - Nipissing University

Alex Bouthillier

unread,
Nov 17, 2012, 7:27:11 PM11/17/12
to bluecov...@googlegroups.com
I can confirm that this works! I replaced the files attached and then connected my remote to my Mountain Lion MBP. it was a pain but it worked eventually. I am now successfully using Wiimote Whiteboard!!!!

Also Remote Buddy works so that is also another option.

Thank you Vaishaal!!!

Sven Köhler

unread,
Nov 19, 2012, 8:02:50 AM11/19/12
to bluecov...@googlegroups.com
Am 18.11.2012 01:27, schrieb Alex Bouthillier:
> I can confirm that this works! I replaced the files attached and then
> connected my remote to my Mountain Lion MBP. it was a pain but it worked
> eventually. I am now successfully using Wiimote Whiteboard!!!!

Please! This is an EVIL hack. You don't replace part of the operating
system (i.e. the framework that ships with it) just to make some library
work. And most likely, this will have bad consequences for the people
who do. Other frameworks or applications linked to that framework may
fail badly at runtime which could result in crashes.

Somebody with some time on their hands should step up and fix the source
of bluecove.



Regards,
Sven

signature.asc

Jesse Scott

unread,
Nov 19, 2012, 4:08:08 PM11/19/12
to bluecov...@googlegroups.com
Exactly.

I got this to work as well, as mentioned before, (though Wiimote Whiteboard would launch but still not operate properly),
but it was crashing XCode at launch… unsustainable.

I have a bit more time on my hands, and will be looking into this more ASAP.

~ Jesse

Uwe

unread,
Nov 24, 2012, 2:09:16 PM11/24/12
to bluecov...@googlegroups.com
Hey guys,

I think I found a better way to use the old IOBluetooth library from OS 10.7. Instead of changing the system library for all applications, you can only change it for the application that relies on BlueCove by changing the DYLD_LIBRARY_PATH environment variable to point to the old IOBluetooth library. See http://www.uweschmidt.org/comment/246167 for an example. Please note that I haven't fully tested this, hence feedback is welcome. I also realize that this is not really a satisfactory solution to the problem in general.

Uwe

Eric Fulton

unread,
Dec 27, 2012, 12:57:48 AM12/27/12
to bluecov...@googlegroups.com
Hey there,

I realize this is somewhat old and that my question is more related to bluecove than the whiteboard app, BUT I was wondering if someone could tell me how to update the DYLD variable so that bluecove will work on my osx mountain lion x64 machine. 

I already added: -d32 to make it run in 32 bit mode and set the DYLD_LIBRARY_PATH=/path/to/IOBluetooth

Is there another step?  I'm still getting:

dyld: lazy symbol binding failed: Symbol not found: _IOBluetoothLocalDeviceReadSupportedFeatures

  Referenced from: /private/var/folders/52/gwv341cj3gv7h9g68k_91hsc0000gn/T/bluecove_Eric_0/libbluecove.jnilib

  Expected in: /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth


dyld: Symbol not found: _IOBluetoothLocalDeviceReadSupportedFeatures

  Referenced from: /private/var/folders/52/gwv341cj3gv7h9g68k_91hsc0000gn/T/bluecove_Eric_0/libbluecove.jnilib

  Expected in: /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth


Any help is appreciated!  I'm very new to BlueCove.


-Eric


Eric Fulton

unread,
Dec 27, 2012, 6:47:24 PM12/27/12
to bluecov...@googlegroups.com
Figured it out.  I was using eclipse and needed to open eclipse in the terminal I set the DYLD variable in.

Guido Sanchez

unread,
Feb 26, 2013, 10:21:59 PM2/26/13
to bluecov...@googlegroups.com
Hi guys. I've been following this thread some time. I managed to compile bluecove 2.1.0 source in my Mac using Lion, I changed some things in the XCode project and fixed some code in order to make it work.

What I changed in the XCode project was:

- The SDK, from 10.5 to 10.7
- The architecture from "i386 ppc" to "Standard (x86/64-bit) Intel".
- I fixed all the errors produced by some switch statements.

I went to http://code.google.com/p/bluecove/wiki/Documentation and followed the instructions there. When I ran "mvn" in a Terminal, the build and tests succeeded. I attach the jar file that was created for anyone to try. I don't have the Lego Mindstorms here with me to see if this this jar works, as soon as I can I will try.

I also don't have Mountain Lion anymore, since I had to downgrade to Lion to be able to use leJOS with the Lego Minstorms. If anyone is willing to try the compiled file in Mountain Lion, that would be good too.

I can upload the modified source code and XCode project as a zip if anyone wants to try to compile on their own.

Hope it helps,

Guido

El miércoles, 1 de agosto de 2012 16:48:17 UTC-3, Uwe escribió:
Hi, my application (http://www.uweschmidt.org/wiimote-whiteboard) runs with BlueCove 2.1.0 and does not work on the recently released Mac OS X 10.8 Mountain Lion. I'm not absolutely sure that BlueCove is the problem, since I personally haven't upgraded to OS X 10.8 yet, but some users sent in error reports that point to BlueCove.
Is there a fix? Here an excerpt:
Exception Type:  EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000002, 0x0000000000000000

Dyld Error Message:
 Symbol not found: _IOBluetoothLocalDeviceReadSupportedFeatures

Thanks,
Uwe
bluecove-2.1.0.jar

Al B

unread,
Jun 10, 2013, 2:13:26 PM6/10/13
to bluecov...@googlegroups.com
This doesn't work on OSX 10.8 though.

Guido Sanchez

unread,
Jun 16, 2013, 8:07:51 PM6/16/13
to bluecov...@googlegroups.com
I found this on GitHub:

https://github.com/ma-ku/bluecove-osx

I haven't tried it, yet.

Tiago Santos

unread,
Jun 28, 2013, 11:22:33 AM6/28/13
to bluecov...@googlegroups.com
Hi.

I've tried it with processing 2.0.1 and no results.

The best I got is:

Exception in thread "Animation Thread" java.lang.NoClassDefFoundError: javax/bluetooth/BluetoothStateException
at lll.wrj4P5.Wrj4P5.connect(Wrj4P5.java:301)
at lll.wrj4P5.Wrj4P5.connect(Wrj4P5.java:290)
at lll.wrj4P5.Wrj4P5.connect(Wrj4P5.java:281)
at myfirstwiimoteApp.setup(myfirstwiimoteApp.java:26)
at processing.core.PApplet.handleDraw(PApplet.java:2245)
at processing.core.PGraphicsJava2D.requestDraw(PGraphicsJava2D.java:243)
at processing.core.PApplet.run(PApplet.java:2141)
at java.lang.Thread.run(Thread.java:680)
Caused by: java.lang.ClassNotFoundException: javax.bluetooth.BluetoothStateException
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at sun.misc.Launcher$ExtClassLoader.findClass(Launcher.java:229)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
... 8 more

Michael Sendetski

unread,
Sep 15, 2013, 10:25:09 AM9/15/13
to bluecov...@googlegroups.com
Hey Eric,

I have the exact same Problem. Can you please tell me in detail how I set up the DYLD variable. I am fairly new to that topic and can't find any useful tutorial on doing this.
Thank you in advance.

 Michael

emnul...@googlemail.com

unread,
Oct 22, 2013, 7:12:29 AM10/22/13
to bluecov...@googlegroups.com
I just compiled bluecove with the patches for OS X. It works without setting the DYLD variable:
https://github.com/ixd-hof/Processing/tree/master/Examples/Input/Wiimote_BalanceBoard/code

At first i tried to compile the whole source with mvn and got an error compiling BlueZ on OS X. Compiling only bluecove itself in the subfolder succeeded.

Gian Giacomo Ermacora

unread,
Oct 26, 2013, 10:46:33 PM10/26/13
to bluecov...@googlegroups.com
Hi, I'm playing with your last compile, it's running until an error about a lazy symbol, I have not idea what it means, btw I'm on Osx 10.9, using Eclipse + SDK 1.7...

BlueCove log redirected to log4j


0 [main] DEBUG com.intel.bluetooth  - Java 1.4+ detected: 1.7.0_40; Java HotSpot(TM) 64-Bit Server VM; Oracle Corporation


15 [main] DEBUG com.intel.bluetooth  - Use stack ClassLoader


34 [main] DEBUG com.intel.bluetooth  - Library loaded from /var/folders/cv/1qsgjk5n36ldpdx07mk_0k2c0000gn/T/bluecove_gian_0/libbluecove.jnilib


35 [main] DEBUG com.intel.bluetooth  - BluetoothStack selected mac


35 [main] DEBUG com.intel.bluetooth  - nativeDebugCallback ON


35 [main] DEBUG com.intel.bluetooth  - getLocalDeviceSupportedSoftwareVersion


NATIVE:      invoke    BTOperation GetLocalDeviceVersion


OSXStack.mm(240)


NATIVE:       execute  BTOperation GetLocalDeviceVersion


OSXStack.mm(223)


NATIVE:       finished BTOperation GetLocalDeviceVersion


OSXStack.mm(225)


NATIVE:      return    BTOperation GetLocalDeviceVersion


OSXStack.mm(248)


38 [main] DEBUG com.intel.bluetooth  - localDeviceSupportedSoftwareVersion 20500


40 [main] DEBUG com.intel.bluetooth  - isLocalDeviceFeatureParkMode


NATIVE:      invoke    BTOperation GetBluetoothHCISupportedFeatures


OSXStack.mm(240)


NATIVE:       execute  BTOperation GetBluetoothHCISupportedFeatures


OSXStack.mm(223)


dyld: lazy symbol binding failed: Symbol not found: _IOBluetoothLocalDeviceReadSupportedFeatures


  Referenced from: /private/var/folders/cv/1qsgjk5n36ldpdx07mk_0k2c0000gn/T/bluecove_gian_0/libbluecove.jnilib


  Expected in: /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth




dyld: Symbol not found: _IOBluetoothLocalDeviceReadSupportedFeatures


  Referenced from: /private/var/folders/cv/1qsgjk5n36ldpdx07mk_0k2c0000gn/T/bluecove_gian_0/libbluecove.jnilib


  Expected in: /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth


Nicolaj Rørvig

unread,
Feb 12, 2014, 11:25:02 AM2/12/14
to bluecov...@googlegroups.com
Basically, it means that it's missing the library which apple removed.
Reply all
Reply to author
Forward
0 new messages