Forums multiple threads per topic

Is it possible to have multiple threads per forum topic?

Hi Mounia, I don't believe there's a way to do this out of the box. My suggestion would be to create a discussion board for each topic or use a third party solution. I haven't used this particular one, but can vouch for the company's products:
http://www.kwizcom.com/sharepoint-add-ons/sharepoint-discussion-board-feature/overview/
cameron rautmann

Similar Messages

  • Multiple stylesheets per topic

    Hello,
    I like to create multiple stylesheets for management
    purposes, rather than having one very very large stylesheet which
    can be used for all topics in my help project. Is there any way
    RoboHelp can support multiple stylesheets per topic? I also want to
    avoid duplication of rules between stylesheets, so using single
    different stylesheets for different topics is not a good solution.
    In particular, I'd like to have a single 'general' stylesheet to
    provide my 'general' formatting. Then, some topics will include an
    additional supplemental stylesheet to provide specific formatting.
    Currently, for these topics where I need special formatting,
    I need to make the rules unique, and add them to my standard (now
    growing very large) stylesheet.
    Thanks in advance!
    Mitch

    Hello Leon,
    I don't want to start an argument on this topic, but I would
    like to quote a couple of experts in the area of stylesheets, then
    quote the W3C itself, since you mentioned them.
    Simon Collison, from Beginning CSS Web Development, Page 10:
    Multiple Style Sheets:
    Consider a style sheet that contains all of the rules you've
    created for an entire site. Let's say that the site is equivalent
    in size to the BBC web site, which is very, very big indeed. All
    the styles required would result in one long, unmanageable style
    sheet, so splitting the style sheet into manageable chunks is a
    much better option here.
    Andy Budd, CSS Mastery, page 24
    For a simple website, you can get away with using a single
    CSS file. With larger and more complicated sites, it can be a good
    idea to separate your styles for ease of maintenance. How you
    separate your styles is a matter of choice. I generally have one
    CSS file for the basic layout and another for typography and design
    embellishment. This way, once the layout is set, I rarely have to
    go back and change the layout style sheet. This also protects my
    layout styles sheet from accidentally being altered and breaking.
    You can abstract things further by creating a separate CSS
    file for color. Then, if you want to offer different color themes,
    it is easy to create a new color style sheet. If you have lots of
    forms on your site, you may want to create a separate CSS file for
    all of your form styles. You can then link that file only when it
    is needed, thus reducing the initial download overhead. If you have
    some pages on your site that are very distinct from the rest of
    your site, you may want to consider splitting these off into their
    own CSS files. For instance, if your homepage layout is very
    different from the rest of the site, you may want to create a
    separate CSS file for the homepage.
    Now, if you'd like to visit
    http://www.w3.org/TR/html401/present/styles.html#h-14.3.1
    you'll read:
    14.3.1 Preferred and alternate style sheets
    HTML allows authors to associate any number of external style
    sheets with a document. The style sheet language defines how
    multiple external style sheets interact (for example, the CSS
    "cascade" rules).

  • I would like to open a Firefox browser with multiple tabs per topic, like work1/work2/hobby and see that given name in the taskbar, instead of the tab-name

    I usually open a new browser window per subject, let's say I'm shopping online for something and open about 5 tabs for that, but in the same time I am working on 2 systems which are lookalike, but defenitely should not be mixed average 6 tabs open per subject. Also I read something on my hobby and I open another window and want to read a few tabs on that.
    I don't want them to mix and preferably I'd like to see a self-chosen subject for a minimized window in the taskbar.
    Is there a feature like this or is it possible to add a feature like this?

    Another alternative by the way maybe to use multiple Firefox profiles. I will give more information on that if required. It is fairly easy if you are used to using computers but not something this forum officially supports with KB articles.
    The bult in Tabs groups sounds more like what you want. Did you try that ?
    As for trying to interest Developers. You could make a comment using ''feedback'' but I would not hold out much hope unless you yourself know a developer willing to undertake the coding and press for its use. Maybe you would be more likely to interest and get something from add-on developers, assuming a similar add-on does not already exist.
    The people who answer questions here, for the most part, are other Firefox users volunteering their time (like me), not Mozilla employees or Firefox developers.
    If you want to leave feedback for Firefox developers, you can go to the Firefox ''Help'' menu and select ''Submit Feedback...'' or use [https://input.mozilla.org/feedback this link]. (You'll need to be on the latest version of Firefox to submit feedback). Your feedback gets collected at http://input.mozilla.org/, where a team of people read it and gather data about the most common issues.

  • Captivate player - Multiple SWFs per topic

    So, I am working with our (very patient) developer to deploy
    a 10 part Captivate movie using Captivate player.
    The problem is that each part (for example- Introduction) has
    more than one SWF file. I really don't want intro 1, intro 2, etc.
    Does this make sense?
    How do you deploy Captivate player if each sub-movie has
    multiple SWFs?
    Thanks.

    It's looks like the SWFLoader is crashing the browser. I
    update the source of the SWFLoader if a user clicks a datagrid
    row...like:
    mySWF.source = myDG.selectedItem.src
    //where mySWF is the id of SWFLoader
    Can I not update the source of SWFLoader like this? or do I
    have to handle this some other way?

  • How to protect the creation of a db across multiple threads/processes?

    Given a multi-process, multi-threaded application, and one database file to be created, how can I guarantee that only one of the threads in one of the processes successfully creates the database, when ALL of the threads are going to either attempt to create it, or open it (if it already exists) upon startup?
    My current logic for all threads is:
    set open flags to DB_THREAD
    start transaction
    attempt to open the db
    if ENOENT
    abort transaction
    change open flags to DB_CREATE | DB_EXCL | DB_THREAD
    retry
    else if EEXIST
    abort transaction
    change open flags to DB_THREAD
    retry
    else if !ok
    # some other error
    end
    commit transaction
    I'm testing on Linux right now, with plans to move to Windows, AIX, and Solaris. What I'm experiencing on Linux is several of the threads (out of 10 threads I'm testing) will succeed in creating the database. The others will receive either either succeed in opening the first time through, or will receive the EEXIST when they do the open w/ create flags - ultimately, they open the same created db (I'm presuming the last one that's created by one of the other threads). Effectively, the open with DB_CREATE | DB_EXCL is not ensuring that only one DB is created. I was under the impression that opening in a transaction would guarantee this, but it does not, or maybe I'm doing something incorrectly?
    Should DB_CREATE | DB_EXCL and opening in a transaction guarantee that only one thread can create the database? Do I need to use another synchronization method?
    Note: I am running off of a local disk, not over NFS or anything like that.
    I tried taking out my transaction and using DB_AUTO_COMMIT instead, still no go - multiple threads still report they successfully created the DB. Using BDB 4.5.
    Thanks,
    Kevin Burge

    Brian,
    Thanks for the reply. I think I'm doing what you said, unless I'm misunderstanding. I do have all threads try to do the DB_CREATE | DB_EXCL. Are you saying I shouldn't use the DB_EXCL flag?
    The problem I was seeing with 10 threads calling open w/ DB_CREATE | DB_EXCL on the same db:
    * Between 1 and 9 threads would return success from db->open with the creation flags.... but the last one to create "wins".
    * All the other threads would get EEXIST, as expected.
    The threads that "lost", do get a successful return code from "open" with the create flags, but all data written to them is lost. They act normally except for the fact that the have a deleted file-handle that they are writing to. There's no indicator that records written to them are going into the void.
    My test:
    I had 10 threads each trying to create or open a recno db, then append 10 records, for a total of 100 records expected. Ultimately, I would end up with between 20 to 100 records in the db, depending on how many of the threads said they successfully created the db. So, if 5 threads said they created the db successfully, then 40 records would be missing, because 4 of those threads were writing to deleted file handles. If 2 threads said they created the db, then 10 records would be missing....If 8 threads, then 70 records missing, etc.
    In other words, multiple threads creating the db appears to work correctly, because there are no errors. It was the missing records that caught my attention, and prompted my question on this forum.
    For what it's worth, I've worked around the problem by opening a similarly named file via the open() system call, with O_CREAT|O_EXCL, which is guaranteed to be atomic. The first thread that can create this temp file is the only thread that can actually create the db - all others sleep upon open with ENOENT until it's created.
    Thanks,
    Kevin

  • Firefox crashes multiple times per day

    Hello all!
    As of the last month or two, Firefox now crashes multiple times per day (even in Safe Mode). Firefox is fully updated, as are my Add-ons and Extensions.
    Yesterday alone, it crashed 14 times (which is about average).
    System Info:
    Windows 7 Home Premium
    Intel Core i7-3610QM CPU @ 2.30 GHz
    8.00 GB RAM
    64-bit OS
    Troubleshooting details:
    "application": {
    "name": "Firefox",
    "version": "30.0",
    "userAgent": "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0",
    "supportURL": "https://support.mozilla.org/1/firefox/30.0/WINNT/en-US/"
    "crashes": {
    "submitted": [
    "id": "bp-56f4b9d3-7646-4804-b1f0-6b86a2140712",
    "date": 1405205216202,
    "pending": false
    "id": "bp-252f490e-dbc4-4b6c-89bb-abc7a2140712",
    "date": 1405205139899,
    "pending": false
    "id": "bp-728dabc3-d5ae-42cc-a7b3-5ef922140712",
    "date": 1405204414387,
    "pending": false
    "id": "bp-f4cf2971-3a0d-4737-b3e4-81c2f2140712",
    "date": 1405204325838,
    "pending": false
    "id": "bp-717ff5d6-7edf-49c7-956f-247e52140712",
    "date": 1405204300027,
    "pending": false
    "id": "bp-e0f0c131-39c9-40e3-b6aa-45c312140712",
    "date": 1405184955514,
    "pending": false
    "id": "bp-8f6e4e47-0363-48d2-a7ff-875b92140712",
    "date": 1405184937698,
    "pending": false
    "id": "bp-9245429c-ccfc-41fa-9edd-79baa2140712",
    "date": 1405184884426,
    "pending": false
    "id": "bp-5e91822b-8fc3-411c-bcf7-c753f2140712",
    "date": 1405184798033,
    "pending": false
    "id": "bp-db406fb0-7045-41a5-b42c-522db2140712",
    "date": 1405183704121,
    "pending": false
    "id": "bp-6c913909-d1ef-4773-9712-fa1b92140712",
    "date": 1405183678385,
    "pending": false
    "id": "bp-65a30f3e-da4a-406b-9bfa-8cec72140712",
    "date": 1405178435488,
    "pending": false
    "id": "bp-11fbb2a8-923f-4ab3-b577-6dbe32140712",
    "date": 1405178411720,
    "pending": false
    "id": "bp-968183f6-086d-430a-a993-f1d892140712",
    "date": 1405127322874,
    "pending": false
    "id": "bp-017688f8-afc7-4b90-8fa7-2be692140711",
    "date": 1405040514173,
    "pending": false
    "id": "bp-342b9f6c-3ffd-489e-ae1c-b5ac62140711",
    "date": 1405037808744,
    "pending": false
    "id": "bp-62c1ea5a-24da-421f-9983-9b09c2140711",
    "date": 1405037772426,
    "pending": false
    "id": "bp-a7227128-b4dd-4cd5-997c-b9f132140711",
    "date": 1405037229671,
    "pending": false
    "id": "bp-2d0b1114-0d86-4f2b-ba7d-20f902140711",
    "date": 1405037207333,
    "pending": false
    "pending": 1
    "modifiedPreferences": {
    "accessibility.typeaheadfind.flashBar": 0,
    "accessibility.browsewithcaret": true,
    "browser.cache.disk.capacity": 358400,
    "browser.cache.disk.smart_size.first_run": false,
    "browser.cache.disk.smart_size.use_old_max": false,
    "browser.cache.disk.smart_size_cached_value": 358400,
    "browser.places.smartBookmarksVersion": 7,
    "browser.sessionstore.upgradeBackup.latestBuildID": "20140605174243",
    "browser.startup.homepage_override.mstone": "30.0",
    "browser.startup.homepage": "https://www.bing.com/",
    "browser.startup.homepage_override.buildID": "20140605174243",
    "dom.mozApps.used": true,
    "extensions.lastAppVersion": "30.0",
    "font.internaluseonly.changed": false,
    "gfx.direct3d.last_used_feature_level_idx": 0,
    "network.cookie.prefsMigrated": true,
    "network.cookie.cookieBehavior": 2,
    "places.database.lastMaintenance": 1405257179,
    "places.history.expiration.transient_current_max_pages": 104858,
    "plugin.state.npitunes": 0,
    "plugin.state.npesnsonar": 0,
    "plugin.state.npesnlaunch": 0,
    "plugin.importedState": true,
    "plugin.state.npsitesafety": 0,
    "plugin.state.npauthz": 0,
    "plugin.disable_full_page_plugin_for_types": "application/pdf,application/vnd.adobe.xfdf,application/vnd.fdf,application/vnd.adobe.xdp+xml",
    "plugin.state.npwlpg": 0,
    "plugin.state.npffwloplugin": 0,
    "plugin.state.npdeployjava": 0,
    "plugin.state.np_wtapp": 0,
    "privacy.cpd.offlineApps": true,
    "privacy.cpd.sessions": false,
    "privacy.donottrackheader.enabled": true,
    "privacy.sanitize.migrateFx3Prefs": true,
    "storage.vacuum.last.places.sqlite": 1405258871,
    "storage.vacuum.last.index": 0
    "graphics": {
    "numTotalWindows": 2,
    "numAcceleratedWindows": 2,
    "windowLayerManagerType": "Direct3D 10",
    "windowLayerManagerRemote": false,
    "adapterDescription": "Intel(R) HD Graphics 4000",
    "adapterVendorID": "0x8086",
    "adapterDeviceID": "0x0166",
    "adapterRAM": "Unknown",
    "adapterDrivers": "igdumd64 igd10umd64 igd10umd64 igdumd32 igd10umd32 igd10umd32",
    "driverVersion": "9.17.10.2843",
    "driverDate": "8-21-2012",
    "adapterDescription2": "NVIDIA GeForce GT 650M ",
    "adapterVendorID2": "0x10de",
    "adapterDeviceID2": "0x0fd1",
    "adapterRAM2": "2048",
    "adapterDrivers2": "nvd3dumx,nvwgf2umx,nvwgf2umx nvd3dum,nvwgf2um,nvwgf2um",
    "driverVersion2": "9.18.13.3788",
    "driverDate2": "5-19-2014",
    "isGPU2Active": false,
    "direct2DEnabled": true,
    "directWriteEnabled": true,
    "directWriteVersion": "6.2.9200.16571",
    "clearTypeParameters": "Gamma: 2200 Pixel Structure: R ClearType Level: 100 Enhanced Contrast: 100 ",
    "webglRenderer": "Google Inc. -- ANGLE (Intel(R) HD Graphics 4000 Direct3D9Ex vs_3_0 ps_3_0)",
    "info": {
    "AzureCanvasBackend": "direct2d",
    "AzureSkiaAccelerated": 0,
    "AzureFallbackCanvasBackend": "cairo",
    "AzureContentBackend": "direct2d"
    "javaScript": {
    "incrementalGCEnabled": true
    "accessibility": {
    "isActive": false,
    "forceDisabled": 0
    "libraryVersions": {
    "NSPR": {
    "minVersion": "4.10.6",
    "version": "4.10.6"
    "NSS": {
    "minVersion": "3.16 Basic ECC",
    "version": "3.16 Basic ECC"
    "NSSUTIL": {
    "minVersion": "3.16",
    "version": "3.16"
    "NSSSSL": {
    "minVersion": "3.16 Basic ECC",
    "version": "3.16 Basic ECC"
    "NSSSMIME": {
    "minVersion": "3.16 Basic ECC",
    "version": "3.16 Basic ECC"
    "userJS": {
    "exists": false
    "extensions": [
    "name": "Norton Toolbar",
    "version": "2014.7.2.6",
    "isActive": true,
    "id": "{2D3F3651-74B9-4795-BDEC-6DA2F431CB62}"
    "name": "Norton Vulnerability Protection",
    "version": "12.2.0.5 - 1",
    "isActive": true,
    "id": "{BBDA0591-3099-440a-AA10-41764D9DB4DB}"
    "name": "Troubleshooter",
    "version": "1.1a",
    "isActive": true,
    "id": "[email protected]"
    "name": "Windows Media Player Extension for Firefox",
    "version": "1.1",
    "isActive": true,
    "id": "jid0-nRwp7VvCqZcSRTppwWz2npqGEKw@jetpack"
    "name": "HTTPS-Everywhere",
    "version": "3.5.3",
    "isActive": false,
    "id": "[email protected]"
    }

    Was discussed here - https://support.mozilla.org/en-US/forums/contributors/709022 - in Feb 2013. And Bug #738661 was filed in March of 2012, with the consensus being.
    '''"In that case this is more likely a bug in Covenant Eyes than it is a bug in Firefox. If we have no hope of success through engaging with Covenant Eyes and can't blocklist the offending DLL from loading, can we at least get a support article posted instructing users how to work around this issue (ie. removing Covenant Eyes or switching to a different browser)?'''
    '''Additionally, I don't see much point in keeping this bug in the NEW state if it's unreasonable to expect that we'll ever fix this."'''

  • IPHOTO - printing multiple photos per page

    Hi,
    Hope someone can help with this.
    I am trying to print multiple photos of the same photo on a "contact sheet" ...I have followed all the steps to complete this, but when I come to the step where I need to select "multiple of the same photo per page" from the Photos Per Page pop-up menu, I am unable to "click" in the box to make the change...am I missing a another step some where ....I appreciate anyone's help out there ..thank you

    Grama
    Welcome to the Apple suer to user discussion forums
    two ways - select the photos you want to print and:
    1 - select contact print as the theme
    2 - select the printer, paper size and prin size and click the customize button and click on the gear thingy at the bottom - the settings icon - and select multiple photos per page
    LN

  • Data Merge Multiple Records Per Page Greyed Out

    I am using InDesign cs5.5. I am attempting to create a catalog with the data merge option. I am attempting to do a data merge from the Master Page.
    As you can see in the image, I have inserted my fields from the data source file. All images, original file, and data source file are in the same folder. I am inserting this info on the left sheet of the master file. When I select "Create Merged Document" the "select multiple records per page" is greyed out, however, there is plenty of room on the page for the 8 records I want it to show. See image below.
    After watching tutorials, reading, etc. I made sure that my document does not have facing pages. I deleted my "page 2" to avoid that conflict. I made sure that the placeholder "allows overwrite from the master". I also deleted my "cache"/settings" by doing "ctrl, alt, shift" when reopening the program. I read that it may be because the files need to be on the right hand sheet of the master, however, when I move my info to the right sheet, I get the following message.
    I have watched the tutorial videos, read the entire help section regarding data merge, and have correctly created my data source file. I've tried everything I've seen on the forums, apart from uninstalling and reinstalling. Please tell me that someone can help me figure this out as soon as possible. I'm in crunch time!
    Thanks a lot.

    Thanks Peter. That helped me un-grey the multiple records. I was able to complete a data merge, however, this is what happens.
    As you can see in this image, I have the margins setup the way I prefer, and the data merge previews correctly.
    Once I click to merge, this is the new document I get - it's only putting one record per page (even though the multiple records per page is selected), and it inserts this layout, not onto actual pages in indesign. It looks reall odd.
    And when you scroll down,
    Any suggestions on fixing this?
    Also, my InDesign freezes up when I try and do a merge of my entire sheet (182 items). The images above are when I tested doing just records 1-32.
    Thanks in advance and thanks for being so prompt yesterday. Very helpful.

  • IPhoto 7.1.3 and printing multiple photos per page

    I cannot get multiple prints to layout (or print) properly. IOW, I cannot get the product to render multiple photos to a single sheet layout.
    - selected multiple photos (say 5)
    - Hit Print icon (or select Print from File menu)
    - Paper Size: choose 8.5x11
    - Print Size: choose 3x5
    - Hit 'Customize' button
    - It is showing 1 photo per page (5 pages)
    - Select 'Settings'
    - Select 'Multiple photos per page'
    - Hit 'OK'
    - No change - still a single photo per page
    - Print preview shows same - 5 pages each with only a single print.
    - Same occurs if I originally select 2,3,4.... prints.
    Perhaps noteworthy: I am using a printer (only available printer) that is attached to another iMac on my wireless network.
    Any help appreciated. About 30 minutes searching this discussion board hasn't been fruitful.

    Michael
    Welcome to the Apple user discussion forums
    - selected multiple photos (say 5)
    - Hit Print icon (or select Print from File menu)
    - Paper Size: choose 8.5x11
    - Print Size: choose 3x5
    When I do these steps my preview shows 4 photo on the page (the maximum number of 3 x 5 you can fit on an 9.5 x 11 sheet) without going to the customize menu - and it works on three different printers
    Try deleting your iPhoto preferences (finder ==> "your username" ==>preferences ==> com.apple.iPhoto.plist), launch iPhoto, reset any preferences you have set and see if it will work
    It should be very easy and straight forward with only the first four steps being needed for this
    LN

  • ITunes is crashing multiple times per day

    For the past few months iTunes has been crashing multiple times per day. Most of the time I'm not even using it. I'll get up in the morning or come home from work and have the problem report message on the screen. Sometimes it does happen while I am using it. I've reinstalled iTunes multiple times and I've repaired permissions.
    Process:         iTunes [12862]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         11.1.5 (11.1.5)
    Build Info:      iTunes-1115011001005005~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [157]
    Responsible:     iTunes [12862]
    User ID:         501
    Date/Time:       2014-03-15 14:01:41.631 -0400
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  E53B8E2D-FAA5-472F-59A0-CFB1D37B192B
    Sleep/Wake UUID: 8A30FCD9-33EA-4A98-B962-6AE8FF9D21BB
    Crashed Thread:  0  iTunes main  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000010c0fc000
    VM Regions Near 0x10c0fc000:
        MALLOC_LARGE           000000010bffc000-000000010c0fc000 [ 1024K] rw-/rwx SM=PRV 
    -->
        mapped file            000000010c117000-000000010c644000 [ 5300K] rw-/rwx SM=COW  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/Resources/Extras2.rsrc
    Thread 0 Crashed:: iTunes main  Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x00007fff98f34768 strlen + 72
    1   com.apple.CoreFoundation                0x00007fff8cb56e0e CFStringCreateWithCString + 30
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8cb13662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff95cd843d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff95cd8152 _dispatch_mgr_thread + 52
    Thread 2:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.mobiledevice                  0x0000000108f48701 __thr_AMRegisterForCallbacks + 217
    7   libdispatch.dylib                       0x00007fff95cd62ad _dispatch_client_callout + 8
    8   libdispatch.dylib                       0x00007fff95cd809e _dispatch_root_queue_drain + 326
    9   libdispatch.dylib                       0x00007fff95cd9193 _dispatch_worker_thread2 + 40
    10  libsystem_pthread.dylib                 0x00007fff9a690ef8 _pthread_wqthread + 314
    11  libsystem_pthread.dylib                 0x00007fff9a693fb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8cb12e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff9a690f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9a693fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8cb129aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff8cc0eb83 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x00000001025697f0 0x10203d000 + 5425136
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001020413cb 0x10203d000 + 17355
    3   com.apple.iTunes                        0x0000000102041325 0x10203d000 + 17189
    4   com.apple.iTunes                        0x00000001022b12f6 0x10203d000 + 2573046
    5   com.apple.iTunes                        0x00000001022b12cd 0x10203d000 + 2573005
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.iTunes                        0x0000000102041483 0x10203d000 + 17539
    3   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    4   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    5   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c77 _pthread_cond_wait + 787
    2   com.apple.iTunes                        0x0000000102041408 0x10203d000 + 17416
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8cb11e02 __accept + 10
    1   com.apple.iTunes                        0x0000000102c82fbd 0x10203d000 + 12869565
    2   com.apple.iTunes                        0x0000000102c69fe3 0x10203d000 + 12767203
    3   com.apple.iTunes                        0x0000000102c69f26 0x10203d000 + 12767014
    4   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    5   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8cb11e02 __accept + 10
    1   com.apple.iTunes                        0x0000000102c82fbd 0x10203d000 + 12869565
    2   com.apple.iTunes                        0x0000000102c69fe3 0x10203d000 + 12767203
    3   com.apple.iTunes                        0x0000000102c69f26 0x10203d000 + 12767014
    4   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    5   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 14:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff92414967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff9241476b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff8ec4c16e _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff8cb129aa __select + 10
    1   com.apple.AirTrafficHost                0x00000001118cc0de _readDictionary + 246
    2   com.apple.AirTrafficHost                0x00000001118cc892 ATProcessLinkCopyMessageFromChild + 182
    3   com.apple.AirTrafficHost                0x00000001118cb63a ATHostConnectionReadMessage + 82
    4   com.apple.iTunes                        0x000000010240f1ba 0x10203d000 + 4006330
    5   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    6   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff8cb12e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff9a690f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9a693fb9 start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff8cb129aa __select + 10
    1   com.apple.AirTrafficHost                0x00000001118cc0de _readDictionary + 246
    2   com.apple.AirTrafficHost                0x00000001118cc892 ATProcessLinkCopyMessageFromChild + 182
    3   com.apple.AirTrafficHost                0x00000001118cb63a ATHostConnectionReadMessage + 82
    4   com.apple.iTunes                        0x000000010240f1ba 0x10203d000 + 4006330
    5   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    6   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8cbc3155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8cbc2779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8cbc20b5 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8cc77811 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x0000000102058403 0x10203d000 + 111619
    7   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    8   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c77 _pthread_cond_wait + 787
    2   com.apple.iTunes                        0x0000000102041408 0x10203d000 + 17416
    3   com.apple.iTunes                        0x00000001024b7d57 0x10203d000 + 4697431
    4   com.apple.iTunes                        0x00000001024b8486 0x10203d000 + 4699270
    5   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    6   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001020413cb 0x10203d000 + 17355
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib                  0x00007fff8cb12a3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff98faedc0 nanosleep + 200
    2   com.apple.iTunes                        0x0000000102cd67b0 0x10203d000 + 13211568
    3   com.apple.iTunes                        0x00000001024a3e48 0x10203d000 + 4615752
    4   com.apple.iTunes                        0x00000001024a5bb8 0x10203d000 + 4623288
    5   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    6   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib                  0x00007fff8cb129aa __select + 10
    1   com.apple.iTunes                        0x0000000102c43baa 0x10203d000 + 12610474
    2   com.apple.iTunes                        0x0000000102c435b0 0x10203d000 + 12608944
    3   com.apple.iTunes                        0x0000000102c43a9f 0x10203d000 + 12610207
    4   com.apple.iTunes                        0x0000000102c3ed91 0x10203d000 + 12590481
    5   com.apple.iTunes                        0x0000000102c3ee44 0x10203d000 + 12590660
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib                  0x00007fff8cb129aa __select + 10
    1   com.apple.iTunes                        0x0000000102c43baa 0x10203d000 + 12610474
    2   com.apple.iTunes                        0x0000000102c435b0 0x10203d000 + 12608944
    3   com.apple.iTunes                        0x0000000102c43a9f 0x10203d000 + 12610207
    4   com.apple.iTunes                        0x0000000102c3ed91 0x10203d000 + 12590481
    5   com.apple.iTunes                        0x0000000102c3ee44 0x10203d000 + 12590660
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib                  0x00007fff8cb129aa __select + 10
    1   com.apple.iTunes                        0x0000000102c43baa 0x10203d000 + 12610474
    2   com.apple.iTunes                        0x0000000102c435b0 0x10203d000 + 12608944
    3   com.apple.iTunes                        0x0000000102c4460d 0x10203d000 + 12613133
    4   com.apple.iTunes                        0x0000000102c4465e 0x10203d000 + 12613214
    5   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    6   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib                  0x00007fff8cb129aa __select + 10
    1   com.apple.iTunes                        0x0000000102c43baa 0x10203d000 + 12610474
    2   com.apple.iTunes                        0x0000000102c435b0 0x10203d000 + 12608944
    3   com.apple.iTunes                        0x0000000102c44556 0x10203d000 + 12612950
    4   com.apple.iTunes                        0x0000000102c4465e 0x10203d000 + 12613214
    5   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    6   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001020413cb 0x10203d000 + 17355
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001020413cb 0x10203d000 + 17355
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 34:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001020413cb 0x10203d000 + 17355
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x00000001020413cb 0x10203d000 + 17355
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 36:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib                  0x00007fff8cb0ea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8cb0dd18 mach_msg + 64
    2   com.apple.audio.CoreAudio               0x00007fff9600f918 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 98
    3   com.apple.audio.CoreAudio               0x00007fff9600f8a6 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
    4   com.apple.audio.CoreAudio               0x00007fff9600e02e HALC_ProxyIOContext::IOWorkLoop() + 950
    5   com.apple.audio.CoreAudio               0x00007fff9600dbcd HALC_ProxyIOContext::IOThreadEntry(void*) + 97
    6   com.apple.audio.CoreAudio               0x00007fff9600da8d HALB_IOThread::Entry(void*) + 75
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 37:
    0   libsystem_kernel.dylib                  0x00007fff8cb12e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff9a690f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9a693fb9 start_wqthread + 13
    Thread 38:
    0   libsystem_kernel.dylib                  0x00007fff8cb12e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff9a690f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff9a693fb9 start_wqthread + 13
    Thread 39:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c77 _pthread_cond_wait + 787
    2   com.apple.iTunes                        0x0000000102041408 0x10203d000 + 17416
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 40:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c77 _pthread_cond_wait + 787
    2   com.apple.iTunes                        0x0000000102041408 0x10203d000 + 17416
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 41:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c77 _pthread_cond_wait + 787
    2   com.apple.iTunes                        0x0000000102041408 0x10203d000 + 17416
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 42:
    0   libsystem_kernel.dylib                  0x00007fff8cb12716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff9a691c77 _pthread_cond_wait + 787
    2   com.apple.iTunes                        0x0000000102041408 0x10203d000 + 17416
    3   com.apple.iTunes                        0x00000001020c340f 0x10203d000 + 549903
    4   com.apple.iTunes                        0x00000001020c33ad 0x10203d000 + 549805
    5   com.apple.iTunes                        0x00000001020c321a 0x10203d000 + 549402
    6   com.apple.iTunes                        0x000000010204208d 0x10203d000 + 20621
    7   libsystem_pthread.dylib                 0x00007fff9a68f899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff9a68f72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff9a693fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0xffffffffffffc000  rbx: 0x000000010bfc40ae  rcx: 0x000000000000000e  rdx: 0x000000010bfc40ae
      rdi: 0x000000010c0fc000  rsi: 0x0000000000000000  rbp: 0x00007fff5dbbdd60  rsp: 0x00007fff5dbbdd60
       r8: 0x00007fff5dbbdf6c   r9: 0x0000000000000000  r10: 0x00000000000001fa  r11: 0x000061000147c3a1
      r12: 0x00007fb455a5b738  r13: 0x0000000000000000  r14: 0x0000000008000100  r15: 0x0000000000000000
      rip: 0x00007fff98f34768  rfl: 0x0000000000010206  cr2: 0x000000010c0fc000
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10203d000 -        0x1036e7ff7  com.apple.iTunes (11.1.5 - 11.1.5) <3598851A-8792-30BD-861C-7E5BC8C141B1> /Applications/iTunes.app/Contents/MacOS/iTunes
           0x103ac1000 -        0x103b41ff7  com.apple.iTunes.iPodUpdater (10.7 - 10.7) <2709E6B0-39E2-3D75-92E3-E9F27C307C4A> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
           0x103b82000 -        0x103badff7  com.apple.avfoundationcf (2.0 - 138.1) <AB1DD559-FD70-39FE-8AE1-632CCA8040A2> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
           0x103be8000 -        0x103f06fe7  com.apple.iad.iAdCore (1.0 - 1) <9E8CC242-A900-3BD1-B044-F07F592B9B3D> /Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions/A/iAdCo re
           0x103fd2000 -        0x103fd6fff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x103fdf000 -        0x103fe2fff  com.apple.iPod (1.7 - 20) <9B9FD104-A8EE-3884-8610-B06700AC344E> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
           0x103fec000 -        0x104318ff7 +libgnsdk_dsp.1.9.5.dylib (1.9.5) <14636B08-4D26-54CA-3EE8-247B2B708AF0> /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.5.dylib
           0x104342000 -        0x104379ff7 +libgnsdk_musicid.1.9.5.dylib (1.9.5) <C034C2ED-6A46-315F-89C8-8D54A937B255> /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.5.dylib
           0x10438e000 -        0x104464fe7 +libgnsdk_sdkmanager.1.9.5.dylib (1.9.5) <D144E870-FABC-E19E-452E-A33D19595B19> /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.5.dylib
           0x104486000 -        0x1044c9ff7 +libgnsdk_submit.1.9.5.dylib (1.9.5) <6689251D-098B-0F8D-08CC-785271E98540> /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib
           0x104786000 -        0x104788ff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x104905000 -        0x104909ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.0 - 2.6.0f1) <82D2F703-F961-3298-B06F-14B772D23C7B> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10494b000 -        0x10494eff7  com.apple.QuartzComposer.iTunesPlugIn (1.4 - 18) <08330444-D369-3B4F-AE16-8E48F771CEEB> /Library/iTunes/iTunes Plug-ins/Quartz Composer Visualizer.bundle/Contents/MacOS/Quartz Composer Visualizer
           0x106348000 -        0x1070bdfff  com.apple.CoreFP (2.5.16 - 2.5.16) <1C390A93-4187-37E7-8A7E-4417876F069B> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
           0x10896e000 -        0x108aa2ff7  com.apple.CoreADI (1.34.0 - 1.34.0) <33B6ECA7-680E-3517-A1C1-9785BA022516> /System/Library/PrivateFrameworks/CoreADI.framework/CoreADI
           0x108aa9000 -        0x108c7afff  com.apple.audio.units.Components (1.10 - 1.10) <7AB53801-51BD-347E-B267-BCF71C15C023> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x108ec3000 -        0x108fb4ff7  com.apple.mobiledevice (710.5 - 710.5) <C250816A-3B97-329D-9F6B-38DACA981CED> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
           0x109019000 -        0x10920ffff  com.apple.audio.codecs.Components (4.0 - 4.0) <604485EE-4446-308F-9460-0A6CE9C2D98C> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
           0x109d2a000 -        0x109d30ff7  com.apple.BookKit (1.0.1 - 158) <34C7F87F-63B6-3E53-A7B1-8A6656405F41> /System/Library/PrivateFrameworks/BookKit.framework/BookKit
           0x1108da000 -        0x110986ff7  com.apple.AppleGVAFramework (7.1.10 - 7.1.10) <3FD3AD06-ADCA-3F90-931C-9B8011328C87> /System/Library/PrivateFrameworks/AppleGVA.framework/AppleGVA
           0x110a37000 -        0x110a4afff  com.apple.MediaLibrary (1.0.1 - 637.4) <BEFCD118-85B1-3BD2-B9E2-47F939E757D5> /System/Library/Frameworks/MediaLibrary.framework/MediaLibrary
           0x1118c9000 -        0x111a4afff  com.apple.AirTrafficHost (351.6 - 351.6) <64B45992-C1BA-35B5-9158-732748DF6B5D> /System/Library/PrivateFrameworks/AirTrafficHost.framework/AirTrafficHost
           0x112624000 -        0x11266bff7  com.apple. AMDRadeonVADriver (1.20.11 - 1.2.0) <D70E0DAA-D4DB-342C-B9EC-B3053F57D6AE> /System/Library/Extensions/AMDRadeonVADriver.bundle/Contents/MacOS/AMDRadeonVAD river
        0x7fff69a86000 -     0x7fff69ab9817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
        0x7fff8c9d4000 -     0x7fff8c9dbff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
        0x7fff8ca34000 -     0x7fff8ca79ffe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8ca7a000 -     0x7fff8cacbfff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8cacc000 -     0x7fff8cad6ff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
        0x7fff8cad7000 -     0x7fff8cafcff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8cafd000 -     0x7fff8cb19ff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8cb1a000 -     0x7fff8cb1afff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8cb1b000 -     0x7fff8cb40ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8cb44000 -     0x7fff8cb51ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8cb52000 -     0x7fff8cd37fff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8cd3d000 -     0x7fff8cd4dffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff8cd4e000 -     0x7fff8cdb2fff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8cdb3000 -     0x7fff8cddcfff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8cddd000 -     0x7fff8cde1fff  com.apple.IOAccelerator (98.14 - 98.14) <13EE735B-BD43-3E9B-9908-E423A17C4517> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
        0x7fff8ce05000 -     0x7fff8ce0effb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8ce0f000 -     0x7fff8ce0ffff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8ce10000 -     0x7fff8ceeffff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8d182000 -     0x7fff8d190fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8d191000 -     0x7fff8d198fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8d199000 -     0x7fff8d229fff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8d22a000 -     0x7fff8d22affd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8d22b000 -     0x7fff8d233fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff8d234000 -     0x7fff8d258fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8d2ce000 -     0x7fff8d2fdff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8d33c000 -     0x7fff8d47dfff  com.apple.QTKit (7.7.3 - 2826.17) <ADA1EF77-57D2-3E7E-8526-8F0B732C1218> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8d47e000 -     0x7fff8d480fff  com.apple.loginsupport (1.0 - 1) <4FBB283B-5BBD-3918-AC89-3A7286CFA145> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff8d481000 -     0x7fff8d493fff  com.apple.login (3.0 - 3.0) <8342C3B7-8363-36BE-B5B6-CD81166AEC24> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff8d494000 -     0x7fff8d4a3ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8d880000 -     0x7fff8d880fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8daff000 -     0x7fff8dbafff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8dbba000 -     0x7fff8dc72ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8dc7a000 -     0x7fff8dcd9fff  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <AE6FAE44-918C-301C-A0AA-C65CAB6B5668> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8dcda000 -     0x7fff8e010fff  com.apple.MediaToolbox (1.0 - 1273.49) <AB8ED666-6D15-3367-A033-F4A8AD33C4E0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8e0dd000 -     0x7fff8e0f8fff  com.apple.DistributionKit (700 - 846) <E4562C9C-9367-3C8E-87C2-80C6C0C7B187> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
        0x7fff8e0f9000 -     0x7fff8e111ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8e112000 -     0x7fff8e158fff  com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff8e159000 -     0x7fff8e15efff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8e173000 -     0x7fff8e1e0fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Vers

    Read this whole message before doing anything.
    Back up all data.
    Quit iTunes if it’s running.
    Step 1
    Hold down the option key and select
    Go ▹ Library
    from the Finder menu bar. Move the following items from the Library folder to the Trash, if they exist:
    Caches/com.apple.iTunes
    Caches/QCCompositionRepository-com.apple.iTunes.cache
    Saved Application State/com.apple.iTunes.savedState
    Leave the Library folder open. Try iTunes again. If it works now, stop here. Close the Library folder.
    Step 2
    If you still have problems, quit iTunes again. Go back to the Finder and move the following item from the open Library folder to the Desktop:
    iTunes
    Note: you are not moving the iTunes application. You’re moving a folder named “iTunes.”
    Test. If iTunes now works, delete the iTunes folder on the Desktop. Otherwise, quit iTunes again. Put back the folder you moved, overwriting the newer one that may have been created in its place, and continue.
    Step 3
    In the Preferences subfolder, there may be several files having names that begin with either of the following strings:
    com.apple.iTunes
    com.apple.mobile.iTunes
    Move them all to the Desktop.
    Also in the Preferences folder, there's a subfolder named "ByHost". Open it and do the same thing.
    Test again. This time iTunes should perform normally, but your settings will be lost. You may be able to put back some of the files you moved to the Desktop in this step. Relaunch and test after each one. Eventually you should find one or more that causes iTunes to malfunction. Delete those files and recreate whatever settings they contained.
    If the issue is still not resolved, quit iTunes again and put all the items you moved to the Desktop back where they were. You don’t need to replace the items you moved to the Trash. Stop here and post again.
    If you later decide that you don’t like the results of steps 2 and 3, you can undo them completely by quitting iTunes and restoring the items you deleted in those steps from your backup.

  • If ScheduledThreadPoolExecutor provides multiple threads

    Hello,
    As per my understanding ScheduledThreadPoolExecutor, provides multiple threads for executing deferred and periodic tasks.
    public class TimerSample {
         public static void main(String args[]){
              ScheduledThreadPoolExecutor timerNew = new ScheduledThreadPoolExecutor(10);
              timerNew.scheduleAtFixedRate(new TimerTaskSample(), 0, 10 * 1000, TimeUnit.MILLISECONDS);
    class TimerTaskSample extends TimerTask{
         public void run(){
              System.out.println(Calendar.getInstance().getTimeInMillis());
              System.out.println(Thread.currentThread().getName());
              try {
                   Thread.sleep(60*1000);
              } catch (Exception e) {
                   e.printStackTrace();
    If this is understanding is correct then I should get a System,out statement after every 10 seconds. But I am getting sys out statement after every 60 seconds.
    Could you please explain this behavior

    The multiple threads is for running multiple tasks. It doesn't make a task multi-threaded. You are right that there is no point having more threads than tasks.
    For what you are trying to do you can generate tasks.
    final ScheduledThreadPoolExecutor timerNew = new ScheduledThreadPoolExecutor(10);
    timerNew.scheduleAtFixedRate(new Runnable() {
      public void run() {
        timerNew.submit(new TimerTaskSample());
      }}, 0, 10 * 1000, TimeUnit.MILLISECONDS);

  • Trackpad quits working multiple times per hour, is it defective?

    I have a mid-2012 13" MBP. My trackpad quits working multiple times per hour. When this happens I have to remove my hand from it and wait a few seconds, then I can use it again. It started a few months after I got the machine last year and has gotten progressively worse. Is this a bug in OS X or is this some kind of malfunction? I need to know if I need to take this to an Apple Store to be fixed under warranty.

    Yes, your issue has been posted many many times here.  Do a forum search and read the posts in the "More Like this" section as well as Apple's articles on the matter - Intel-based Apple Portables: Troubleshooting unresponsive trackpad issues and   Portables and Magic Trackpad: Jumpy or erratic trackpad operation
    Always, take full advantage of your warranty before you lose it.  Call Apple Care and make sure you get a case number.  You should also consider purchasing Apple Care Protection plan.

  • Screenie thread per WM/DE or one thread a month?

    Following the results of this poll, it has been democratically decided that having a thread per WM/DE is better than the current method.
    However, having one screenie thread per month was also proposed and supported so this new poll seeks to find the most popular approach.
    The main problem I can see is practical - would we lock the old threads each month - or leave them open for people to post comments?  I think the latter but it is then up to posters to post new screenies in the new month thread!
    I reckon people will be dying to get there screenie top of the month tho - I ask you, what a bunch of geeks, eh? 
    The poll will run for 14 days only - if you can't get your thumb out and vote by then don't complain later!

    IceRAM wrote:If it is so beautiful, it should be "art", shouldn't it?
    Not yours    :twisted:
    I think the the threads on the forum here are going to stay for a while, i dont like the way the gallery that has been implemented works.
    Firstly theres all the crud about a 'cart' everywhere, and i can tell ya, nobody's gonna be selling screenshots.
    secondly, it's not the most usable thing, theres no "show me the last 5 screenshots uploaded" nor is there an easy or obvious way to make a comment on a particular screenshot, i eventually found the add comment link.
    the thread is good because it promotes discussion, ie, where'd you get that wallpaper or how'd you do that?
    IMHO, coppermine would have been a better choice.
    http://coppermine.sourceforge.net/
    It does a much better job, it's easier to use, doesnt have cart and printing crud everywhere, and its capable of being integrated with phpbb and phpbb's user system, allowing a single sign on.
    iphitus

  • Plugin reloading too slow of multiple applets per page

    Hi,
    I want to share a problem with this community and try to shed some light on this.
    We all know that an applet loads slow when the JVM loads for the first time or when an applets JAR gets loaded. Fine and not the problem here.
    However, applets load too slow when loaded again during the same browser session. Why is this important? Well, in an AJAX-like intranet application you may use multiple applets per page which are loaded again and again as you navigate. The applets could enrich the user experience much the way AJAX does -- if only the applets would not slow down loading of pages.
    For example: we have pages with about 10 applets which take about 4 seconds to reload, or 400 ms per applet. This is disappointingly slow because there is no technical excuse for this -- everything is up and running on the Java side and Flash prooves that loading ActiveX can be fast, too. Moreover, it became slower and slower from 1.1 to 1.5.
    Nobody at Sun or elsewhere seems to care about this. And therefore, the plugin has now became problematic in Ajax-like intranet scenarios.
    This is a pitty and we would very much welcome any kind of activity to improve this.
    Anybody knows why this is slow and what is planned to improve this?

    There is one known optimization (which may be useful for the readers of this topic):
    One may try to keep at least ONE applet with the given EXACT (IDENTICAL archive string) classpath active, e.g., in a frame. This keeps the classloader referenced all the time and avoids reconstruction of the class loader.
    However, we already apply this technique and the question is how to get reloading of applets with a ready classloader as fast as FLASH...

  • Jdbc and multiple thread

    hi, i have an application that creates multiple thread..each thread (querythread) is accessing a webservice(querydb) that retrieves data from different databases. This webservice supposed to create a jdbc connection each time it is invoke by the querythread. The problem is i get an error that a particular table does not exist in the server..This is cause by the confusion in my program..
    The table is access in the wrong server..e.g.(cdsisis.TblHoldings does not exist) this is because thread is confuse and using a different connection..when i tried to use the querydb webservice directly per database it is ok. but when i try to make multiple thread to invoke querydb accessing different database it has this error: cdsisis.TblHoldings does not exist
    cdsisis is a database server..and tblHoldings is a table in another database named silms. i think the thread tends to share resources.
    should it be that thread supposed to be independent with each other? how come this is happening?

    hi, i have an application that creates multiple
    thread..each thread (querythread) is accessing a
    webservice(querydb) that retrieves data from
    different databases. This webservice supposed to
    create a jdbc connection each time it is invoke by
    the querythread. The problem is i get an error that a
    particular table does not exist in the server..This
    is cause by the confusion in my program..
    The table is access in the wrong
    server..e.g.(cdsisis.TblHoldings does not exist) this
    is because thread is confuse and using a different
    connection..when i tried to use the querydb
    webservice directly per database it is ok. but when i
    try to make multiple thread to invoke querydb
    accessing different database it has this error:
    cdsisis.TblHoldings does not exist
    cdsisis is a database server..and tblHoldings is a
    table in another database named silms. i think the
    thread tends to share resources.
    should it be that thread supposed to be independent
    with each other? how come this is happening?I think you should lock your thread while trying to make request or making your connection. When you lock your thread, the currently used variable can not be accessed by another thread. Actually I know you are creating different treads and create different instances of connection. But some how some methods are not thread safe, it means they are static or use static variables. So they change from another thread, while you are trying to access it.
    If lock does not work try this,
    synchronized(this){
    //do your stuff
    }

Maybe you are looking for

  • Remote app and an ethernet network

    I'll try to keep this simple. Everything was working fine with 10.5.8, no longer with Snow Leopard. I have an ethernet network connected to DSL. Apple TV is hooked up via ethernet. MacPro is hooked up via ethernet. Airport Express is hooked up to eth

  • 2 monitor query

    Does anyone know if  it is possible to use 2 separate monitors (a 24" and a 20") using the Advanced Mini Dock with a T61 or T400? They would need to be showing 2 separate images for use with architectural drawings and plans Thinking you could use one

  • Adding swing javabean in websphere studio

    I have my own JFormattedTextField derived bean component which i wanted to add as another component in the palette (where other Swing, AWT etc. components are there). so that developer can just drag and drop it. I know i can use "Choose Bean" dialog

  • Tracability of errors in Sender RFC

    Dear All, In RFC to file scenario, how to trace weather the RFC have generated the files or not?. I have a problem few files were missing but client(SAPR3) log confirms the RFC executed successfully. Is there any way to check the RFC log that weather

  • Bookmark titles?

    When I create a bookmark in iBooks then view the Bookmarks "list" they have the text "No title".  Is there a way to add a title to the bookmark to describe it or is this something iBooks "pulls" from a chapter heading or like item?  There is nothing