Touch OSC and Moving Lights
Touch OSC and Moving Lights
I love the new LX Console. Like Christmas everytime a new version comes out. I have my ipad and iphone running TouchOSC with Qlab 3 and LX Console. Two questions:
1. If I have Qlab 3 running it likes port 53000 for OSC, if I also assign that to LX Console for OSC it works but keeps Qlab from working. Can I have two programs share the same port or assign different ports for OSC?
2. The biggest help a remote would do for me is to be able to adjust pan and tilt and focus of my moving light that is patched on channel 400. Can I make some custom OSC sliders that will adjust channel 400's pan,tilt and edge? What is the OSC code for that?
Thanks. As always, I am your biggest fan.
1. If I have Qlab 3 running it likes port 53000 for OSC, if I also assign that to LX Console for OSC it works but keeps Qlab from working. Can I have two programs share the same port or assign different ports for OSC?
2. The biggest help a remote would do for me is to be able to adjust pan and tilt and focus of my moving light that is patched on channel 400. Can I make some custom OSC sliders that will adjust channel 400's pan,tilt and edge? What is the OSC code for that?
Thanks. As always, I am your biggest fan.
Mark Nizer
mark@nizer.com
mark@nizer.com
You could indeed assign different ports to LXConsole and QLab for OSC. The problem is that TouchOSC will only address a single output port. As long as you are OK changing TouchOSC's connection to switch between LXConsole and QLab, you could have LXConsole and QLab both listening to OSC on different ports.
The latest build of LXConsole 3.1.1 adds some extra OSC functions that may help you out. First, it adds OSC to the list of actions that can be triggered by a cue. So, you could use TouchOSC to trigger a cue and have that cue send an OSC message to QLab.
The other thing that 3.1.1 will do is that if it does not have an action for an OSC message it receives, it will forward the message to its OSC output (if enabled). This would allow you to pass messages through LXConsole and on to QLab. To do this, you would set the OSC output connection in the preferences to "your_computer's_ip_address:53000" rather than TouchOSC. Because you change the output, you would not get command line feedback in TouchOSC but perhaps that's an OK tradeoff for controlling QLab.
You can address any subchannel in the same way you do intensity by using channel.subchannel on the command line. You could make a TouchOSC layout with a pan slider with the OSC message: "/cmd.lxconsole/400.2@%p" and a tilt slider: "/cmd.lxconsole/400.4@%p" (The list of subchannels in the current file is found in the Setup window's channels tab.)
You don't have to use custom OSC messages, you can also create OSC actions to do the same thing using the Setup window's OSC tab. An OSC action could have a command line like above. Or, it can control the sliders in the channel controls window. (When using the channel controls window, remember that it operates on selected channels).
The latest build of LXConsole 3.1.1 adds some extra OSC functions that may help you out. First, it adds OSC to the list of actions that can be triggered by a cue. So, you could use TouchOSC to trigger a cue and have that cue send an OSC message to QLab.
The other thing that 3.1.1 will do is that if it does not have an action for an OSC message it receives, it will forward the message to its OSC output (if enabled). This would allow you to pass messages through LXConsole and on to QLab. To do this, you would set the OSC output connection in the preferences to "your_computer's_ip_address:53000" rather than TouchOSC. Because you change the output, you would not get command line feedback in TouchOSC but perhaps that's an OK tradeoff for controlling QLab.
You can address any subchannel in the same way you do intensity by using channel.subchannel on the command line. You could make a TouchOSC layout with a pan slider with the OSC message: "/cmd.lxconsole/400.2@%p" and a tilt slider: "/cmd.lxconsole/400.4@%p" (The list of subchannels in the current file is found in the Setup window's channels tab.)
You don't have to use custom OSC messages, you can also create OSC actions to do the same thing using the Setup window's OSC tab. An OSC action could have a command line like above. Or, it can control the sliders in the channel controls window. (When using the channel controls window, remember that it operates on selected channels).
Confirm a RECORD GROUP from TouchOSC
Is there a way to confirm a overwrite dialog box from TouchOSC to record a Group cue. I know you can do it with OSCulator but be nice to not have to run more software.
I tried ENTER, RETURN...
The rest is working great
I tried ENTER, RETURN...
The rest is working great
Mark Nizer
mark@nizer.com
mark@nizer.com
The latest build (65B04) allows you to remotely dismiss the existing cue/group/sub alert either by sending enter or clear. (OSC messages: /key.lxconsole/enter or /key.lxconsole/clear). If you are using TouchOSC with the LXConsoleRemote layout and have outgoing OSC enabled, you will see "Overwrite?" displayed so that you know to press enter or clear.
----------------------
Here's some more about controlling pan and tilt via OSC:
The TouchOSC xy control sends a message with two data values. So, you need to get both values. There are a couple of ways to do this and they both require the definition of two actions to extract both data values from the OSC message.
The TouchOSC "simple" layout has an xy control. It sends a message "/3/xy". To respond to this you would use the Setup window's osc tab and define the two actions.
To use the control on a specific channel the actions would look like this:
Address | Action Command
/3/xy | 400.2@%p
/3/xy | 400.4@%p
To use the control on selected channels with the Channel Controls window open:
Address | Action Command
/3/xy | CCPan
/3/xy | CCTilt
The latest build of LXConsole (65A04) allows you to combine these on one line with a semicolon.
Address | Action Command
/3/xy | 400.2@%p;400.4@%p
OR
Address | Action Command
/3/xy | CCPan;CCTilt
This is an improvement because if you are doing a custom layout it means that you can send the following messages:
/cmd.lxconsole/400.2@%p;400.4@%p
AND
/cmd.lxconsole/CCPan;CCTilt
LXConsole will respond directly to these and you do not have to create actions in the Setup window. Prior to this build, it was required to use two defined actions in order to be able to extract the two data parameters.
----------------------
Here's some more about controlling pan and tilt via OSC:
The TouchOSC xy control sends a message with two data values. So, you need to get both values. There are a couple of ways to do this and they both require the definition of two actions to extract both data values from the OSC message.
The TouchOSC "simple" layout has an xy control. It sends a message "/3/xy". To respond to this you would use the Setup window's osc tab and define the two actions.
To use the control on a specific channel the actions would look like this:
Address | Action Command
/3/xy | 400.2@%p
/3/xy | 400.4@%p
To use the control on selected channels with the Channel Controls window open:
Address | Action Command
/3/xy | CCPan
/3/xy | CCTilt
The latest build of LXConsole (65A04) allows you to combine these on one line with a semicolon.
Address | Action Command
/3/xy | 400.2@%p;400.4@%p
OR
Address | Action Command
/3/xy | CCPan;CCTilt
This is an improvement because if you are doing a custom layout it means that you can send the following messages:
/cmd.lxconsole/400.2@%p;400.4@%p
AND
/cmd.lxconsole/CCPan;CCTilt
LXConsole will respond directly to these and you do not have to create actions in the Setup window. Prior to this build, it was required to use two defined actions in order to be able to extract the two data parameters.
Amazing!!!!!
Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!Amazing!!!!!
What used to take 15 minutes. now takes 2 minutes!!!!!
What used to take 15 minutes. now takes 2 minutes!!!!!
Mark Nizer
mark@nizer.com
mark@nizer.com
-
- Posts: 211
- Joined: Sat Jun 01, 2013 8:23 am
- Location: Adelaide, Australia
Hmm... I can't put my finger on it... whether I am misreading these instructions, or whether the TouchOSC changes that have affected i.e. the Master Fader response have anything to do with it, I can not get the CCPan / CCTilt on selected channels to work.
Here is the setup:
Ch2 has .0 , .2, and .4 all patched. They react when directly spoken to (i.e. 2.2@40 etc).
When selecting channel 2 by simply going "2", they do not react:
A) "out of the box" - i.e. having an xypad (TouchOSC 1.9.3, TouchOSC Editor 1.6.0, LXConsole 3.2.5 (6917C)) sending /3/xy , and
A.1) doing nothing.
A.2) Defining one action - "CCPan;CCTilt" (no quotes)
A.3) Defining two actions - "CCPan", and "CCTilt" (no quotes)
B) With two faders (one for Pan, one for Tilt)
B.1) Defining one action for each - "CCPan", and "CCTilt" (no quotes)
B.2) Letting them send "/cmd.lxconsole/CCPan" and "/cmd.lxconsole/CCTilt"
I tried this with both the "ignore the z" option on and off, so I assume this function must have somehow become broken since it was brought in? Or maybe TouchOSC... however:
When I tried _explicit_ commands like 2.2@%p, it works without a hitch... which would be great, but working on selected channels is obviously muuuuch better !
Also, can CCRed, CCGreen, CCBlue, CCStrobe also be exposed in this way? I envision awesome colour control on selected channels that way...
Here is the setup:
Ch2 has .0 , .2, and .4 all patched. They react when directly spoken to (i.e. 2.2@40 etc).
When selecting channel 2 by simply going "2", they do not react:
A) "out of the box" - i.e. having an xypad (TouchOSC 1.9.3, TouchOSC Editor 1.6.0, LXConsole 3.2.5 (6917C)) sending /3/xy , and
A.1) doing nothing.
A.2) Defining one action - "CCPan;CCTilt" (no quotes)
A.3) Defining two actions - "CCPan", and "CCTilt" (no quotes)
B) With two faders (one for Pan, one for Tilt)
B.1) Defining one action for each - "CCPan", and "CCTilt" (no quotes)
B.2) Letting them send "/cmd.lxconsole/CCPan" and "/cmd.lxconsole/CCTilt"
I tried this with both the "ignore the z" option on and off, so I assume this function must have somehow become broken since it was brought in? Or maybe TouchOSC... however:
When I tried _explicit_ commands like 2.2@%p, it works without a hitch... which would be great, but working on selected channels is obviously muuuuch better !
Also, can CCRed, CCGreen, CCBlue, CCStrobe also be exposed in this way? I envision awesome colour control on selected channels that way...
Cheers,
Freddy
Freddy
-
- Posts: 211
- Joined: Sat Jun 01, 2013 8:23 am
- Location: Adelaide, Australia
Ha! So simple, once you mention it !
In that case, success!
Except, no joy with any colour setting (neither with CCColor, nor with CCRed, CCGreen, CCBlue, or CCStrobe). I did have success addressing Iris, Beam, and Edge that way, but it seems that anything with "CC" in front that has no fader in the Channel Control window is interpreted as setting the Intensity fader.
While I don't suggest a GUI change to make the Channel Control window more complex/big etc, would it not be desirable to offer some sort of color control?
At its easiest (and to kill all subchannel birds with one stone), maybe whatever is in the list on the left (all subchannels) could be exposed by name (no faders needed?).
If one would want to go fancier than that, one could imagine to CCHue;CCSaturation (for an xy pad) as well as CCLuminosity (for a single vertical Fader), like this:
In that case, success!
Except, no joy with any colour setting (neither with CCColor, nor with CCRed, CCGreen, CCBlue, or CCStrobe). I did have success addressing Iris, Beam, and Edge that way, but it seems that anything with "CC" in front that has no fader in the Channel Control window is interpreted as setting the Intensity fader.
While I don't suggest a GUI change to make the Channel Control window more complex/big etc, would it not be desirable to offer some sort of color control?
At its easiest (and to kill all subchannel birds with one stone), maybe whatever is in the list on the left (all subchannels) could be exposed by name (no faders needed?).
If one would want to go fancier than that, one could imagine to CCHue;CCSaturation (for an xy pad) as well as CCLuminosity (for a single vertical Fader), like this:
Cheers,
Freddy
Freddy
-
- Posts: 211
- Joined: Sat Jun 01, 2013 8:23 am
- Location: Adelaide, Australia
Channel controls that do not have faders in the window can be controlled by actions assigned using their sub-channel numbers. Assigning an OSC action "CC23" will control the red sub-channel (That is if any selected channel has a red-sub-channel).
The updating of "CC" type actions has been improved in 3.2.6 (6926A). Previously, it was possible to overload with messages and have the updating fall considerably behind. Also, this build will automatically show the Channel Controls window when an OSC message with a "CC" type action is received if the OSC MIDI Always Live preference is enabled.
The updating of "CC" type actions has been improved in 3.2.6 (6926A). Previously, it was possible to overload with messages and have the updating fall considerably behind. Also, this build will automatically show the Channel Controls window when an OSC message with a "CC" type action is received if the OSC MIDI Always Live preference is enabled.
-
- Posts: 211
- Joined: Sat Jun 01, 2013 8:23 am
- Location: Adelaide, Australia
Awesome!
However, just playing around with an xy pad for pan and tilt, this happened (several times) - it looked like some sort of overload of info, which then caused LXConsole to crash:
However, just playing around with an xy pad for pan and tilt, this happened (several times) - it looked like some sort of overload of info, which then caused LXConsole to crash:
Code: Select all
Process: LXConsole [4958]
Path: /Applications/LXSeries Pro/LXConsole.app/Contents/MacOS/LXConsole
Identifier: com.claudeheintzdesign.LXConsole
Version: 3.2.6 [6926B] (3.2.6)
Code Type: X86-64 (Native)
Parent Process: launchd [144]
User ID: 501
Date/Time: 2013-10-27 12:31:38.416 +1000
OS Version: Mac OS X 10.8.4 (12E55)
Report Version: 10
Interval Since Last Report: 1965368 sec
Crashes Since Last Report: 187
Per-App Interval Since Last Report: 8280 sec
Per-App Crashes Since Last Report: 5
Anonymous UUID: F489D92A-AF2A-6F04-C57E-2A94A06F5408
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x00000000106bdc2e
VM Regions Near 0x106bdc2e:
-->
__TEXT 0000000100000000-00000001000ed000 [ 948K] r-x/rwx SM=COW /Applications/LXSeries Pro/LXConsole.app/Contents/MacOS/LXConsole
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libobjc.A.dylib 0x00007fff84d608f1 objc_destructInstance + 42
1 libobjc.A.dylib 0x00007fff84d60fa0 object_dispose + 22
2 com.claudeheintzdesign.LXConsole 0x0000000100071fc9 0x100000000 + 466889
3 com.claudeheintzdesign.LXConsole 0x0000000100074483 0x100000000 + 476291
4 com.apple.CoreFoundation 0x00007fff8c8bc28a CFRelease + 170
5 com.apple.CoreFoundation 0x00007fff8c8e3a80 -[__NSArrayM removeObjectAtIndex:] + 400
6 com.apple.CoreFoundation 0x00007fff8c92357f -[NSMutableArray removeAllObjects] + 79
7 com.claudeheintzdesign.LXConsole 0x0000000100075188 0x100000000 + 479624
8 com.claudeheintzdesign.LXConsole 0x00000001000124e3 0x100000000 + 74979
9 com.apple.CoreFoundation 0x00007fff8c8f8eda _CFXNotificationPost + 2554
10 com.apple.Foundation 0x00007fff8e79d43b postQueueNotifications + 753
11 com.apple.CoreFoundation 0x00007fff8c90d417 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
12 com.apple.CoreFoundation 0x00007fff8c90d381 __CFRunLoopDoObservers + 369
13 com.apple.CoreFoundation 0x00007fff8c8e8881 __CFRunLoopRun + 929
14 com.apple.CoreFoundation 0x00007fff8c8e80e2 CFRunLoopRunSpecific + 290
15 com.apple.HIToolbox 0x00007fff871feeb4 RunCurrentEventLoopInMode + 209
16 com.apple.HIToolbox 0x00007fff871fec52 ReceiveNextEventCommon + 356
17 com.apple.HIToolbox 0x00007fff871feae3 BlockUntilNextEventMatchingListInMode + 62
18 com.apple.AppKit 0x00007fff89a0d533 _DPSNextEvent + 685
19 com.apple.AppKit 0x00007fff89a0cdf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
20 com.apple.AppKit 0x00007fff89a041a3 -[NSApplication run] + 517
21 com.apple.AppKit 0x00007fff899a8bd6 NSApplicationMain + 869
22 com.claudeheintzdesign.LXConsole 0x0000000100001074 0x100000000 + 4212
Thread 1:
0 libsystem_kernel.dylib 0x00007fff8b2e3686 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8b2e2c42 mach_msg + 70
2 com.apple.CoreFoundation 0x00007fff8c8e3233 __CFRunLoopServiceMachPort + 195
3 com.apple.CoreFoundation 0x00007fff8c8e8916 __CFRunLoopRun + 1078
4 com.apple.CoreFoundation 0x00007fff8c8e80e2 CFRunLoopRunSpecific + 290
5 com.apple.CoreFoundation 0x00007fff8c8f6dd1 CFRunLoopRun + 97
6 libftd2xx.1.2.2.dylib 0x00000001001bd03f event_thread_main + 517
7 libsystem_c.dylib 0x00007fff8d0fd7a2 _pthread_start + 327
8 libsystem_c.dylib 0x00007fff8d0ea1e1 thread_start + 13
Thread 2:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff8b2e5d16 kevent + 10
1 libdispatch.dylib 0x00007fff8315bdea _dispatch_mgr_invoke + 883
2 libdispatch.dylib 0x00007fff8315b9ee _dispatch_mgr_thread + 54
Thread 3:
0 libsystem_kernel.dylib 0x00007fff8b2e5f96 poll + 10
1 libftd2xx.1.2.2.dylib 0x00000001001b7235 handle_events + 297
2 libftd2xx.1.2.2.dylib 0x00000001001b7bc5 libusb_handle_events_timeout_completed + 127
3 libftd2xx.1.2.2.dylib 0x00000001001ab352 poll_async_libusb + 41
4 libsystem_c.dylib 0x00007fff8d0fd7a2 _pthread_start + 327
5 libsystem_c.dylib 0x00007fff8d0ea1e1 thread_start + 13
Thread 4:
0 libsystem_kernel.dylib 0x00007fff8b2e3686 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8b2e2c42 mach_msg + 70
2 com.apple.audio.midi.CoreMIDI 0x0000000100140970 XServerMachPort::ReceiveMessage(int&, void*, int&) + 96
3 com.apple.audio.midi.CoreMIDI 0x000000010015cb23 MIDIProcess::RunMIDIInThread() + 243
4 com.apple.audio.midi.CoreMIDI 0x0000000100141c2c XThread::RunHelper(void*) + 10
5 com.apple.audio.midi.CoreMIDI 0x000000010014180f CAPThread::Entry(CAPThread*) + 175
6 libsystem_c.dylib 0x00007fff8d0fd7a2 _pthread_start + 327
7 libsystem_c.dylib 0x00007fff8d0ea1e1 thread_start + 13
Thread 5:: com.apple.NSURLConnectionLoader
0 libsystem_kernel.dylib 0x00007fff8b2e3686 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8b2e2c42 mach_msg + 70
2 com.apple.CoreFoundation 0x00007fff8c8e3233 __CFRunLoopServiceMachPort + 195
3 com.apple.CoreFoundation 0x00007fff8c8e8916 __CFRunLoopRun + 1078
4 com.apple.CoreFoundation 0x00007fff8c8e80e2 CFRunLoopRunSpecific + 290
5 com.apple.Foundation 0x00007fff8e7ab546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
6 com.apple.Foundation 0x00007fff8e809562 __NSThread__main__ + 1345
7 libsystem_c.dylib 0x00007fff8d0fd7a2 _pthread_start + 327
8 libsystem_c.dylib 0x00007fff8d0ea1e1 thread_start + 13
Thread 6:
0 libsystem_kernel.dylib 0x00007fff8b2e50fa __psynch_cvwait + 10
1 libsystem_c.dylib 0x00007fff8d101fe9 _pthread_cond_wait + 869
2 libftd2xx.1.2.2.dylib 0x00000001001a8a7d EventWait + 221
3 libftd2xx.1.2.2.dylib 0x00000001001a8826 reader_thread + 237
4 libsystem_c.dylib 0x00007fff8d0fd7a2 _pthread_start + 327
5 libsystem_c.dylib 0x00007fff8d0ea1e1 thread_start + 13
Thread 7:
0 libsystem_kernel.dylib 0x00007fff8b2e50fa __psynch_cvwait + 10
1 libsystem_c.dylib 0x00007fff8d101fe9 _pthread_cond_wait + 869
2 libftd2xx.1.2.2.dylib 0x00000001001a8a7d EventWait + 221
3 libftd2xx.1.2.2.dylib 0x00000001001a85f1 processor_thread + 263
4 libsystem_c.dylib 0x00007fff8d0fd7a2 _pthread_start + 327
5 libsystem_c.dylib 0x00007fff8d0ea1e1 thread_start + 13
Thread 8:
0 libsystem_kernel.dylib 0x00007fff8b2e50fa __psynch_cvwait + 10
1 libsystem_c.dylib 0x00007fff8d101fe9 _pthread_cond_wait + 869
2 libftd2xx.1.2.2.dylib 0x00000001001a89df EventWait + 63
3 libftd2xx.1.2.2.dylib 0x00000001001a9c20 write_thread + 82
4 libsystem_c.dylib 0x00007fff8d0fd7a2 _pthread_start + 327
5 libsystem_c.dylib 0x00007fff8d0ea1e1 thread_start + 13
Thread 9:: CVDisplayLink
0 libsystem_kernel.dylib 0x00007fff8b2e50fa __psynch_cvwait + 10
1 libsystem_c.dylib 0x00007fff8d101fe9 _pthread_cond_wait + 869
2 com.apple.CoreVideo 0x00007fff8c0562a1 CVDisplayLink::runIOThread() + 689
3 com.apple.CoreVideo 0x00007fff8c055fd7 startIOThread(void*) + 148
4 libsystem_c.dylib 0x00007fff8d0fd7a2 _pthread_start + 327
5 libsystem_c.dylib 0x00007fff8d0ea1e1 thread_start + 13
Thread 10:: com.apple.CFSocket.private
0 libsystem_kernel.dylib 0x00007fff8b2e5322 __select + 10
1 com.apple.CoreFoundation 0x00007fff8c927f46 __CFSocketManager + 1302
2 libsystem_c.dylib 0x00007fff8d0fd7a2 _pthread_start + 327
3 libsystem_c.dylib 0x00007fff8d0ea1e1 thread_start + 13
Thread 11:
0 libobjc.A.dylib 0x00007fff84d5e710 objc_msgSend_vtable13 + 16
1 com.claudeheintzdesign.LXConsole 0x0000000100074647 0x100000000 + 476743
2 com.claudeheintzdesign.LXConsole 0x00000001000746aa 0x100000000 + 476842
3 com.claudeheintzdesign.LXConsole 0x000000010003304f 0x100000000 + 208975
4 com.claudeheintzdesign.LXConsole 0x000000010002cc72 0x100000000 + 183410
5 com.claudeheintzdesign.LXConsole 0x00000001000751c2 0x100000000 + 479682
6 com.claudeheintzdesign.LXConsole 0x00000001000124e3 0x100000000 + 74979
7 com.claudeheintzdesign.LXConsole 0x0000000100012820 0x100000000 + 75808
8 com.claudeheintzdesign.LXConsole 0x000000010000d410 0x100000000 + 54288
9 com.claudeheintzdesign.LXConsole 0x0000000100074d6e 0x100000000 + 478574
10 com.claudeheintzdesign.LXConsole 0x00000001000093f8 0x100000000 + 37880
11 com.claudeheintzdesign.LXConsole 0x000000010009201a 0x100000000 + 598042
12 com.apple.CoreFoundation 0x00007fff8c8f8eda _CFXNotificationPost + 2554
13 com.apple.Foundation 0x00007fff8e7bc7b6 -[NSNotificationCenter postNotificationName:object:userInfo:] + 64
14 com.claudeheintzdesign.LXConsole 0x0000000100090e68 0x100000000 + 593512
15 com.claudeheintzdesign.LXConsole 0x00000001000909a1 0x100000000 + 592289
16 com.claudeheintzdesign.LXConsole 0x00000001000906eb 0x100000000 + 591595
17 com.claudeheintzdesign.LXConsole 0x00000001000905c6 0x100000000 + 591302
18 com.apple.Foundation 0x00007fff8e809562 __NSThread__main__ + 1345
19 libsystem_c.dylib 0x00007fff8d0fd7a2 _pthread_start + 327
20 libsystem_c.dylib 0x00007fff8d0ea1e1 thread_start + 13
Thread 12:
0 libsystem_kernel.dylib 0x00007fff8b2e56d6 __workq_kernreturn + 10
1 libsystem_c.dylib 0x00007fff8d0fff4c _pthread_workq_return + 25
2 libsystem_c.dylib 0x00007fff8d0ffd13 _pthread_wqthread + 412
3 libsystem_c.dylib 0x00007fff8d0ea1d1 start_wqthread + 13
Thread 13:
0 libsystem_kernel.dylib 0x00007fff8b2e56d6 __workq_kernreturn + 10
1 libsystem_c.dylib 0x00007fff8d0fff4c _pthread_workq_return + 25
2 libsystem_c.dylib 0x00007fff8d0ffd13 _pthread_wqthread + 412
3 libsystem_c.dylib 0x00007fff8d0ea1d1 start_wqthread + 13
Thread 14:
0 libsystem_kernel.dylib 0x00007fff8b2e56d6 __workq_kernreturn + 10
1 libsystem_c.dylib 0x00007fff8d0fff4c _pthread_workq_return + 25
2 libsystem_c.dylib 0x00007fff8d0ffd13 _pthread_wqthread + 412
3 libsystem_c.dylib 0x00007fff8d0ea1d1 start_wqthread + 13
Thread 15:
0 libsystem_kernel.dylib 0x00007fff8b2e56d6 __workq_kernreturn + 10
1 libsystem_c.dylib 0x00007fff8d0fff4c _pthread_workq_return + 25
2 libsystem_c.dylib 0x00007fff8d0ffd13 _pthread_wqthread + 412
3 libsystem_c.dylib 0x00007fff8d0ea1d1 start_wqthread + 13
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x00000000106bdc0e rbx: 0x0000000106bcfb70 rcx: 0x00000000000fc080 rdx: 0x000000000009fd10
rdi: 0x0000000106bcfb70 rsi: 0x00007fff8a23508b rbp: 0x00007fff5fbfe1b0 rsp: 0x00007fff5fbfe1a0
r8: 0x0000000101d1a750 r9: 0x0000000044ff6fee r10: 0x0000000100616a30 r11: 0x00007fff724bb340
r12: 0x0000000106bcfb70 r13: 0x0000000000000006 r14: 0x0000000106bcfb70 r15: 0x0000000106bcfb70
rip: 0x00007fff84d608f1 rfl: 0x0000000000010246 cr2: 0x00000000106bdc2e
Logical CPU: 0
Binary Images:
0x100000000 - 0x1000ecfff +com.claudeheintzdesign.LXConsole (3.2.6 [6926B] - 3.2.6) <FD47E884-79B6-3F50-911C-F7606FF17F70> /Applications/LXSeries Pro/LXConsole.app/Contents/MacOS/LXConsole
0x100133000 - 0x10017dff7 com.apple.audio.midi.CoreMIDI (1.9 - 78) <28B1D3A5-973A-359A-99DC-18BE8C30C6B8> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x1001a6000 - 0x1001c8ff7 +libftd2xx.1.2.2.dylib (1.2.2) <3B13AA26-9FE1-3EB8-EF96-A63C849F60AB> /usr/local/lib/libftd2xx.1.2.2.dylib
0x1007e8000 - 0x1007edff7 libFontRegistryUI.dylib (100) <9F172961-DB6F-3A82-9F90-28F9A233F755> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resources/libFontRegistryUI.dylib
0x101ae9000 - 0x101af3fff com.apple.iokit.IOUSBLib (5.5.0 - 5.5.0) <3859152B-752E-3126-B9A7-12B9D9B01C81> /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Contents/MacOS/IOUSBLib
0x105166000 - 0x10516bfff com.apple.IOAccelerator (74.5.1 - 74.5.1) <574EC60B-E292-3FEA-8A66-B12DB2C1CEC5> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x1057cc000 - 0x1057d5fe7 libcldcpuengine.dylib (2.2.16) <DB9678F6-7D50-384A-A961-6109B61D1607> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x1062bf000 - 0x1062ccfff libGPUSupport.dylib (8.9.2) <0D32763C-7F3D-3FDB-9EDB-760BB7AFFA04> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport.dylib
0x1062d3000 - 0x1062dffff libGPUSupportMercury.dylib (8.9.2) <971EDFC6-3E6A-375C-9133-F50DFDDCEBDD> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
0x106889000 - 0x1068b4fff GLRendererFloat (8.9.2) <18D6F0AD-C5F1-3E8F-89C2-89426A3D6FE4> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
0x106d00000 - 0x106ebefff GLEngine (8.9.2) <420E03C3-B91D-33C7-A1C4-BE60A1544971> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
0x10955a000 - 0x1096cafff libGLProgrammability.dylib (8.9.2) <83DBCC22-F711-3F9D-B622-6DE5D9DD90AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x10c000000 - 0x10c488ff7 com.apple.driver.AppleIntelHD4000GraphicsGLDriver (8.12.47 - 8.1.2) <ED3787B7-1558-3C4C-8F84-7E810A27FF7E> /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD4000GraphicsGLDriver
0x110fdd000 - 0x110fddff9 +cl_kernels (???) <37BD6D7A-3B3D-4E77-8DD5-9C748C86D506> cl_kernels
0x110fdf000 - 0x111075ff7 unorm8_rgba.dylib (2.2.16) <853BEBC4-AED9-3CE2-B91D-3D666E7C7C8F> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgba.dylib
0x11119c000 - 0x11119cff1 +cl_kernels (???) <E70738F1-AD84-476C-8F1B-73CCF0AD8D18> cl_kernels
0x11119e000 - 0x111238ff7 unorm8_bgra.dylib (2.2.16) <5D62BED8-DF5D-3C51-94B4-57368FF10DDB> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib
0x200000000 - 0x20092eff7 com.apple.GeForceGLDriver (8.12.47 - 8.1.2) <C54C54E7-855D-3C7C-84A0-C20F082E32E9> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
0x7fff6ae8a000 - 0x7fff6aebe93f dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
0x7fff81ed6000 - 0x7fff81f9bff7 com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff81f9c000 - 0x7fff81fa7fff libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
0x7fff821fe000 - 0x7fff82255ff7 com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
0x7fff8228b000 - 0x7fff8228bfff com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff822d6000 - 0x7fff822daff7 com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff822db000 - 0x7fff822e4ff7 com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x7fff822e5000 - 0x7fff8245aff7 com.apple.CFNetwork (596.4.3 - 596.4.3) <A57B3308-2F08-3EC3-B4AC-39A3D9F0B9F7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff82467000 - 0x7fff8247aff7 libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
0x7fff8247b000 - 0x7fff82486fff com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff82487000 - 0x7fff8253aff7 com.apple.PDFKit (2.8.4 - 2.8.4) <BD6E8774-1C8B-3CD1-B5FA-7352B2173068> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff8253b000 - 0x7fff82547fff com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff82548000 - 0x7fff8257fff7 libssl.0.9.8.dylib (47.1) <B7C438BB-79FF-37B3-B8FB-253E5135CBB4> /usr/lib/libssl.0.9.8.dylib
0x7fff82580000 - 0x7fff82682fff libJP2.dylib (850) <2E43216C-3A5A-3693-820C-38B360698FA0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff827b4000 - 0x7fff827d5fff com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x7fff827d6000 - 0x7fff82893ff7 com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff82894000 - 0x7fff828b1ff7 com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff828b2000 - 0x7fff828ddfff libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
0x7fff829d4000 - 0x7fff82a1cfff libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
0x7fff82a2b000 - 0x7fff82a2cff7 libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
0x7fff82a2d000 - 0x7fff82a67ff7 com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff82a69000 - 0x7fff82cd3fff com.apple.RawCamera.bundle (4.05 - 690) <811A4D96-D91B-39AE-A9DC-652E3EB8937E> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff82cdc000 - 0x7fff82d4aff7 com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff82dbb000 - 0x7fff82ff0ff7 com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff82ff1000 - 0x7fff82ff2ff7 libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
0x7fff82ff5000 - 0x7fff82ff5ffd com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff82ff6000 - 0x7fff8305ffff libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
0x7fff83060000 - 0x7fff8306cfff libCSync.A.dylib (332) <47466CF6-EB5C-3312-9E24-178F4410A92B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x7fff83078000 - 0x7fff83112fff libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff83113000 - 0x7fff83156ff7 com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff83157000 - 0x7fff8316cff7 libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
0x7fff832f9000 - 0x7fff83327ff7 libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
0x7fff833e8000 - 0x7fff833fcfff com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff83401000 - 0x7fff83403fff com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff8343f000 - 0x7fff834bfff7 com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff834fd000 - 0x7fff83560ff7 com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff83587000 - 0x7fff83589fff libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
0x7fff8358a000 - 0x7fff835caff7 com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff836b3000 - 0x7fff83747ff7 com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff83748000 - 0x7fff8374dfff libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
0x7fff8374e000 - 0x7fff8374fff7 libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
0x7fff83751000 - 0x7fff837a0fff com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff837a1000 - 0x7fff8389eff7 libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
0x7fff84884000 - 0x7fff848ceff7 libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff848cf000 - 0x7fff8493cff7 com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff8493d000 - 0x7fff84973fff com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff84974000 - 0x7fff84981ff7 com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff8498b000 - 0x7fff849b3fff libJPEG.dylib (850) <DC750E1E-BD07-339B-A4A6-D86BFE969F68> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff84ba1000 - 0x7fff84ba7fff libCGXCoreImage.A.dylib (332) <F6300A73-D4C4-3DE6-A1B7-806E627CCF76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
0x7fff84c50000 - 0x7fff84cb8fff libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff84cb9000 - 0x7fff84ceaff7 com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff84ceb000 - 0x7fff84d44ff7 com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff84d45000 - 0x7fff84d4afff com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff84d4b000 - 0x7fff84d55fff com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff84d56000 - 0x7fff84d56fff com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff84d57000 - 0x7fff84e6f92f libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
0x7fff84e76000 - 0x7fff84e7dfff libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
0x7fff84e7e000 - 0x7fff84e84fff com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff84e85000 - 0x7fff84e8cfff libGFXShared.dylib (8.9.2) <398F8D57-EC82-3E13-AC8E-470BE19237D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff84e8d000 - 0x7fff85128ff7 com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff85191000 - 0x7fff851f0fff com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff851f1000 - 0x7fff852eefff libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
0x7fff852ef000 - 0x7fff853e0ff7 com.apple.DiskImagesFramework (10.8.3 - 345) <F9FAEAF0-B9A5-34DF-94B7-926FB03AD5F6> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff853e1000 - 0x7fff856b2ff7 com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff856b3000 - 0x7fff85805fff com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff85806000 - 0x7fff85832fff com.apple.framework.Apple80211 (8.4 - 840.22.1) <7CFDDBBB-87DF-3CB5-AB69-A77D73F26239> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff85833000 - 0x7fff8590dfff com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff85943000 - 0x7fff85a63fff com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff85a64000 - 0x7fff85a77ff7 com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff85a78000 - 0x7fff85a78fff com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff85a94000 - 0x7fff85a95fff liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
0x7fff85a96000 - 0x7fff85d4dff7 com.apple.MediaToolbox (1.0 - 926.104) <916B1ACC-2623-39FB-9B5A-1B0162F8C468> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff85da5000 - 0x7fff85df2fff com.apple.CoreMediaIO (308.0 - 4155.4) <B563579E-469D-39A1-975C-F4EDD419602E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff85e0b000 - 0x7fff85e0dfff com.apple.securityhi (4.0 - 55002) <34E45C60-DC7E-3FCC-A1ED-EBF48B77C559> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff85e62000 - 0x7fff85e89ff7 com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff85f43000 - 0x7fff85fd0ff7 com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff85fd1000 - 0x7fff85ffffff com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff86000000 - 0x7fff8609bfff com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff8609c000 - 0x7fff86493fff libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff864d6000 - 0x7fff865d8fff libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
0x7fff8663a000 - 0x7fff86651fff com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff86652000 - 0x7fff86679fff com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x7fff8667a000 - 0x7fff866e2ff7 libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
0x7fff866e3000 - 0x7fff866f2fff com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff86751000 - 0x7fff86762ff7 libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
0x7fff86763000 - 0x7fff86766ff7 libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
0x7fff86767000 - 0x7fff86818fff com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff86819000 - 0x7fff86977fef com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
0x7fff86992000 - 0x7fff86994fff libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff86995000 - 0x7fff869d0fff com.apple.LDAPFramework (2.4.28 - 194.5) <7C71C445-2B52-3AC0-97E5-9F2E692C8F5C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff869d4000 - 0x7fff869d9fff libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
0x7fff869ef000 - 0x7fff869effff com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff86a26000 - 0x7fff86a45ff7 libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
0x7fff86d0b000 - 0x7fff86d0dff7 com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff86ddd000 - 0x7fff8708cfff com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff8708d000 - 0x7fff870b9ff7 libRIP.A.dylib (332) <D26BC320-B415-3C4D-B57F-D525FC361BB2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff870ba000 - 0x7fff870bafff com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff870bb000 - 0x7fff870bbfff libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
0x7fff870bc000 - 0x7fff87118fff com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff87119000 - 0x7fff87145fff com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff87146000 - 0x7fff87167ff7 libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
0x7fff87168000 - 0x7fff8719efff libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
0x7fff8719f000 - 0x7fff874cffff com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff874d0000 - 0x7fff87cb5ff7 libclh.dylib (4.0.3 - 4.0.3) <D29F081B-2AFD-3190-87CF-ED244FA03DB0> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
0x7fff87cb6000 - 0x7fff87dcffff com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff87e5d000 - 0x7fff87fe3fff libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff87fe4000 - 0x7fff87ff3ff7 libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
0x7fff87ff4000 - 0x7fff87ffafff libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
0x7fff88032000 - 0x7fff8804cfff com.apple.CoreMediaAuthoring (2.1 - 914) <CFA664F9-D5A7-3281-A12F-3ED8A98FD8C1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff8813f000 - 0x7fff88143fff libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
0x7fff88153000 - 0x7fff8826dfff com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff8826e000 - 0x7fff882adff7 com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff8833e000 - 0x7fff883c0ff7 com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff8843f000 - 0x7fff8844aff7 com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff884d8000 - 0x7fff884f7ff7 com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff884f8000 - 0x7fff884f8fff com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff88613000 - 0x7fff88a30fff FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
0x7fff88a31000 - 0x7fff88b03ff7 com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff88b04000 - 0x7fff88b08fff libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff88b09000 - 0x7fff88b1ffff com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff88b20000 - 0x7fff88f5cfef com.apple.VideoToolbox (1.0 - 926.104) <9231E12F-3D46-3F3D-B24F-6E16127E5909> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff88f5d000 - 0x7fff88f5dfff com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff88faa000 - 0x7fff88fb1fff com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff88fcc000 - 0x7fff88fd9fff com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff88fda000 - 0x7fff89029ff7 libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff8902a000 - 0x7fff89038ff7 libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
0x7fff89039000 - 0x7fff89041fff liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
0x7fff890b3000 - 0x7fff890b4fff libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff89110000 - 0x7fff898b7fff com.apple.CoreAUC (6.16.13 - 6.16.13) <8CBFBC9C-0773-3DEB-AF99-989008CB2B36> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff898b8000 - 0x7fff8a4e5fff com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff8a4e6000 - 0x7fff8a508ff7 libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
0x7fff8a516000 - 0x7fff8a51afff libGIF.dylib (850) <D4525F87-759C-338C-B283-BB8DE815D3D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff8a568000 - 0x7fff8a56eff7 libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
0x7fff8a59e000 - 0x7fff8a5a2fff libCGXType.A.dylib (332) <17C8DD17-B3CB-3633-B252-C368AE51204C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff8a637000 - 0x7fff8a682fff com.apple.framework.CoreWLAN (3.3 - 330.15) <047FA8CB-7447-3171-9518-6C88DA71F20E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff8af39000 - 0x7fff8b1ddff7 com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff8b1de000 - 0x7fff8b233ff7 libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff8b234000 - 0x7fff8b2d2ff7 com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff8b2d3000 - 0x7fff8b2eeff7 libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
0x7fff8b2ef000 - 0x7fff8b2f2fff com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff8b2f3000 - 0x7fff8bc834af com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff8c054000 - 0x7fff8c07eff7 com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff8c07f000 - 0x7fff8c096fff libGL.dylib (8.9.2) <B8E5948D-BCF2-3727-B74E-D74B8EDC82D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff8c097000 - 0x7fff8c297fff libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
0x7fff8c298000 - 0x7fff8c33eff7 com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff8c33f000 - 0x7fff8c39bff7 com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff8c39c000 - 0x7fff8c3b3fff com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff8c3b4000 - 0x7fff8c40efff com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff8c40f000 - 0x7fff8c45bff7 libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
0x7fff8c45c000 - 0x7fff8c4b6ff7 com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff8c4b7000 - 0x7fff8c4c5ff7 libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
0x7fff8c4c6000 - 0x7fff8c517ff7 com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff8c55c000 - 0x7fff8c599fef libGLImage.dylib (8.9.2) <C38649ED-E1C9-315E-9953-F33E8C6A3C89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff8c59a000 - 0x7fff8c70bff7 com.apple.QTKit (7.7.1 - 2599.31) <1CBAB8B9-E335-33E3-B442-60105D265CB7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff8c723000 - 0x7fff8c76efff com.apple.CoreMedia (1.0 - 926.104) <31EAF297-9C42-3D6F-A8A1-CDAB94A26113> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff8c7f2000 - 0x7fff8c7f6ff7 com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff8c7f7000 - 0x7fff8c84dfff com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff8c88d000 - 0x7fff8c8b2ff7 libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
0x7fff8c8b3000 - 0x7fff8ca9dff7 com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff8ca9e000 - 0x7fff8caf5ff7 com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff8caf6000 - 0x7fff8caf6fff libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
0x7fff8cd7b000 - 0x7fff8d092ff7 com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff8d093000 - 0x7fff8d0a1fff libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
0x7fff8d0a2000 - 0x7fff8d0a3ff7 libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
0x7fff8d0a4000 - 0x7fff8d0e8fff libcups.2.dylib (327.6) <9C01D012-6F4C-3B69-B614-1B408B0ED4E3> /usr/lib/libcups.2.dylib
0x7fff8d0e9000 - 0x7fff8d1b5ff7 libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
0x7fff8d3ff000 - 0x7fff8d50afff libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff8d50b000 - 0x7fff8d609fff com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff8d60a000 - 0x7fff8d61cff7 libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
0x7fff8d656000 - 0x7fff8d7f1fef com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff8d7f2000 - 0x7fff8d7f3fff libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
0x7fff8dd06000 - 0x7fff8dd09fff com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff8dd0a000 - 0x7fff8deb8fff com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff8df2f000 - 0x7fff8df7eff7 libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
0x7fff8df9a000 - 0x7fff8e08ffff libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
0x7fff8e0a5000 - 0x7fff8e0adff7 libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
0x7fff8e0ae000 - 0x7fff8e0b0ff7 libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
0x7fff8e43d000 - 0x7fff8e440fff libRadiance.dylib (850) <62E3F7FB-03E3-3937-A857-AF57A75EAF09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff8e441000 - 0x7fff8e44efff libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
0x7fff8e45e000 - 0x7fff8e480ff7 com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff8e481000 - 0x7fff8e554ff7 com.apple.DiscRecording (7.0 - 7000.2.4) <49FD2D2F-4F2C-39B6-877B-6E3172577D18> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff8e555000 - 0x7fff8e5d3ff7 com.apple.securityfoundation (6.0 - 55115.4) <C5461971-E455-31A6-99B8-AF80C4BC26DD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff8e5e5000 - 0x7fff8e666fff com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff8e667000 - 0x7fff8e687fff libPng.dylib (850) <203C43BF-FAD3-3CCB-81D5-F2770E36338B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff8e718000 - 0x7fff8e72dfff com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff8e756000 - 0x7fff8e771ff7 libexpat.1.dylib (12) <95D59F1F-0A5C-3F33-BA97-26F7D796CE7A> /usr/lib/libexpat.1.dylib
0x7fff8e772000 - 0x7fff8e772fff com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff8e773000 - 0x7fff8ead2fff com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff8ead3000 - 0x7fff8ed2eff7 com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff8ed2f000 - 0x7fff8ed3aff7 com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff8ed3b000 - 0x7fff8ed49fff com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
0x7fff8ed4a000 - 0x7fff8ed4efff com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff8ed4f000 - 0x7fff8ed92ff7 com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 4
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: 3291
thread_create: 1
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=210.6M resident=100.9M(48%) swapped_out_or_unallocated=109.7M(52%)
Writable regions: Total=247.9M written=19.1M(8%) resident=78.2M(32%) swapped_out=2172K(1%) unallocated=169.7M(68%)
REGION TYPE VIRTUAL
=========== =======
CG backing stores 10.0M
CG image 4K
CG raster data 252K
CG shared images 224K
CoreAnimation 84K
CoreImage 72K
CoreServices 2384K
IOKit 90.5M
IOKit (reserved) 4K reserved VM address space (unallocated)
MALLOC 131.0M
MALLOC guard page 48K
Memory tag=240 4K
Memory tag=242 12K
Memory tag=251 8K
OpenCL 16K
OpenGL GLSL 1936K
OpenGL GLSL (reserved) 128K reserved VM address space (unallocated)
SQLite page cache 192K
STACK GUARD 56.1M
Stack 15.2M
VM_ALLOCATE 16.3M
__DATA 34.4M
__IMAGE 528K
__LINKEDIT 54.6M
__TEXT 156.1M
__UNICODE 544K
mapped file 67.5M
shared memory 18.4M
=========== =======
TOTAL 656.2M
TOTAL, minus reserved VM space 656.1M
Model: MacBookPro10,1, BootROM MBP101.00EE.B02, 4 processors, Intel Core i7, 2.7 GHz, 16 GB, SMC 2.3f35
Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
Graphics: NVIDIA GeForce GT 650M, NVIDIA GeForce GT 650M, PCIe, 1024 MB
Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xEF), Broadcom BCM43xx 1.0 (5.106.98.100.17)
Bluetooth: Version 4.1.4f2 12041, 2 service, 11 devices, 1 incoming serial ports
Network Service: Thunderbolt Ethernet, Ethernet, en2
Network Service: Wi-Fi, AirPort, en0
Serial ATA Device: APPLE SSD SM512E, 500.28 GB
USB Device: hub_device, 0x8087 (Intel Corporation), 0x0024, 0x1d100000 / 2
USB Device: hub_device, 0x0424 (SMSC), 0x2512, 0x1d180000 / 3
USB Device: BRCM20702 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x1d181000 / 5
USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8286, 0x1d181300 / 8
USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0263, 0x1d182000 / 4
USB Device: hub_device, 0x8087 (Intel Corporation), 0x0024, 0x1a100000 / 2
USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8510, 0x1a110000 / 3
USB Device: DMX USB PRO Mk2, 0x0403 (Future Technology Devices International Limited), 0x6001, 0x14100000 / 1
Cheers,
Freddy
Freddy
-
- Posts: 211
- Joined: Sat Jun 01, 2013 8:23 am
- Location: Adelaide, Australia
-
- Posts: 211
- Joined: Sat Jun 01, 2013 8:23 am
- Location: Adelaide, Australia
Actually, I was able to eliminate the issue... it must have something to do with OSCulator, and now, since I have started to use the "forwarding" (and thus have direct communication between LXConsole and TouchOSC) it seems to work without crashing (the only issue remaining being as mentioned in the other post, that an OSC messages with more than one argument are not properly handed through LXConsole).
Cheers,
Freddy
Freddy
This crash may have been random and a result of a certain sequence of events happening on different threads. This type of crash is hard to reproduce. However, the latest build 3.2.7 improves the way that "CC" type actions are handled to eliminate the possibility of a threading issue when more than one channel control is being manipulated via OSC or MIDI.
-
- Posts: 211
- Joined: Sat Jun 01, 2013 8:23 am
- Location: Adelaide, Australia