When Excel refreshes Multiple Applications  Hangs

Hi Experts ,
7.5 NW SP04 upgraded recently , BPC is individually working but other application also working individually,and its get HANGED when parallely opens like BPC Excel and Any PPT application
It throws error -
"Error : The source application in busy can't response immediately".You can switch to the other application and try to resolve the problem
Note : BPC individual working fine,when refresh report in Excel or In Power Point refresh its get Hnaged and throws error.,is there any Office installation issue ?
Thanks in advance
Regards
Yash

Hi Yaswant,
Are you still facing this problem? Which version of MS Office are you using?
If you have resolved the problem, probably you could share how you resolved.
Regards,
Balaji Sadhanandam

Similar Messages

  • Satellite L50-A-10W - Multiple applications using sound cause crackle

    When I have multiple applications running, for example:
    Youtube playing a video, being on skype and playing a game.
    They sometimes shut down/mute the other application, or cause the sound from all of them crackle.
    It is getting a bit frustrating.
    The drivers I have are DTS Studio sound, and the IDT sound card driver.
    I can make the crackles stop by turning off the EQ in DTS Studio but that is only a temporary solution for a short period of time, and I need a permanent solution to thiis problem.
    My laptop is a Toshiba L50-A-10W.
    I have tried multiple headphones already, and connecting an external soundcard and using the jack output of that one works(I don't think that's relevant though).
    Any help is appreciated, and I really need it.
    Please help.

    >It might be something with the soundcard driver or the DTS Studio driver because turning off the equalizer solves it for the moment, but I'm looking for a primary solution.
    Well, I think we can only assume about possible reasons.
    I dont think that there is a magic or primary solution.
    If you think that the driver/software causes this issue, I would recommend you to reinstall this software.
    Uninstall the DTC studio. Clean the system (good freeware software is CCLeaner)
    Reboot the notebook, download the DTS software and install it again.
    You could also test the notebooks sound appearance without the installed DTS software.

  • Microsoft Word and Excel Hang When Pasting From Apple Applications

    I have had a problem ever since upgrading to Snow Leopard. Word and Excel hang when pasting from Apple applications like Safari and Pages. Pasting to OpenOffice does not show the problem. Pasting from Firefox does not show the problem. I have resolved font duplicates, got rid of input managers, reinstalled Office removing plist files and normal templates but the problem persists. Microsoft is saying it is not their software after looking at the crash dump created from force quit. Besides, sticking to open source software , I am at a loss for what to try next besides reinstalling Mac OS X 10.6 (I am on 10.6.2 now). Any help appreciated. I have crash dumps and snapshots of the hung process if anyone can read them. Word is using close to 100% of the CPU when hung.

    Microsoft is saying it is not their software after looking at the crash dump created from force quit.
    If their software is freezing up, it's certainly nobody else's fault. If those Apple apps are for some reason creating bad clipboard data, Microsoft's apps should be able to gracefully recover and report the problem. Error handling is probably one of the most important, and most difficult, aspects of programming, but you can't blame poor error handling on anyone but the developer. I suspect that, rather than bad clipboard data, it's more likely to be a case of Microsoft's apps simply not understanding something about perfectly valid clipboard data, because they haven't properly followed Apple developer guidelines.
    Of course, that's not a solution. I can't really provide you a solution, other than to ask what version of Office you're using. If you're using too old a version of Word, you should update. You should also let us know what kinds of stuff you're copying. More info always helps to get better answers.

  • How do I set Safari to prompt before closing multiple tabs OR reopen all of the closed tabs when when I relaunch the application?  The "Reopen all windows from last session" is unselectable.

    How do I set Safari to prompt before closing multiple tabs OR reopen all of the closed tabs when when I relaunch the application?  The "Reopen all windows from last session" is unselectable.

    It would seem if your choose "Show my windows and tabs from last time" '''''and''''',
    *when you last closed Firefox, you had no web site open (just a blank tab), that it would open just that blank tab
    *when you last closed Firefox, you had one or more tabs/web site open, that would allow you to "Restore Previous Session"
    #Have you tried that?
    #If so, what is happening in each circumstance when you reopen Firefox?
    '''Restore Previous Session'''<br />
    Open tabs are automatically saved when closing Firefox beginning in Firefox 4. To open your last session, after Firefox starts, click History > Restore Previous Session. For this to work
    #You must be remembering history (Options > Privacy > Remember my browsing history).
    #*See [https://support.mozilla.com/en-US/kb/Options%20window%20-%20Privacy%20panel Options window-Privacy panel]
    #You must not be using Private Browsing or permanent Private Browsing
    #*See [https://support.mozilla.com/en-US/kb/Private%20Browsing Private Browsing]
    #You must not use Clear Recent History or Clear history when Firefox closes
    #*See [https://support.mozilla.com/en-US/kb/Clear%20Recent%20History Clear Recent History]
    #*See [https://support.mozilla.com/en-US/kb/Options%20window%20-%20Privacy%20panel Options window-Privacy panel]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]

  • Application hangs when using ProcessStartInfo and Process.WaitForExit.

    I've looked on different threads about this, but all of them uses the Process.RedirectStandardOutput = True, which I don't.
    I'm trying to open a process (console application, not made by me) to make it compile a special .acs file to a .o file. The structure is simple, the only argument is the file you want to compile.
    But on certain files my application hangs when trying to open the process. Here's my code:
    Dim p As New Process
    Dim ps As New ProcessStartInfo
    ps.Arguments = SavePath 'Path example: "C:\Program Files (x86)\Zandronum\File.acs"
    ps.FileName = Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory(), "Script Compilers\Zandronum\acc.exe")
    ps.CreateNoWindow = False
    ps.ErrorDialog = False
    ps.UseShellExecute = True
    ps.WindowStyle = ProcessWindowStyle.Hidden
    ps.WorkingDirectory = Path.GetDirectoryName(SavePath)
    Dim ErrorCaptured As Boolean = False
    Try
    p = Process.Start(ps)
    Catch ex As Exception
    ErrorCaptured = True
    End Try
    If ErrorCaptured = False Then
    p.WaitForExit()
    End If
    If ErrorCaptured = True Then
    Exit Sub
    End If
    Thanks!
    //Visual Vincent
    EDIT:
    For starting the process I use pretty much the same code that another guy made in C#. And his code is working perfectly...
    // Setup process info
    processinfo = new ProcessStartInfo();
    processinfo.Arguments = args;
    processinfo.FileName = Path.Combine(this.tempdir.FullName, info.ProgramFile);
    processinfo.CreateNoWindow = false;
    processinfo.ErrorDialog = false;
    processinfo.UseShellExecute = true;
    processinfo.WindowStyle = ProcessWindowStyle.Hidden;
    processinfo.WorkingDirectory = this.workingdir;
    try
    process = Process.Start(processinfo);
    catch(Exception e)
    // Unable to start the compiler
    General.ShowErrorMessage("Unable to start the compiler (" + info.Name + "). " + e.GetType().Name + ": " + e.Message, MessageBoxButtons.OK);
    return false;
    // Wait for compiler to complete
    process.WaitForExit();
    I hope your day has been better than yesterday, but that it's worse than tomorrow...
    Please mark as answer if I solved your problem. :)

    Hi,
     Have you compared the FileNames and Arguments of ones that work and ones that don`t? Is there any difference in them such as the ones that work do not contain blank spaces in the FileName or arguments and the ones that do work don`t contain blank spaces
    in them? If you find that to be the problem then you need to add Quotes to the beginning and end of the FileName or Arguments.
     My first guess is the Arguments needs the Quotes like this because, i see blank spaces in your example of the Arguments.
    ps.Arguments = Chr(34) & SavePath & Chr(34)
    If you say it can`t be done then i`ll try it
    This actually made it. I had forgotten that blank spaces makes it a new argument, silly me. I don't use process arguments that often. ;)
    Thanks alot!
    I hope your day has been better than yesterday, but that it's worse than tomorrow...
    Please mark as answer if I solved your problem. :)

  • Environment.Exit hangs when called from an application domain exception handler

    I've implemented a handler for exceptions not thrown in the main GUI thread of my C# WinForms application, as follows:
        AppDomain.CurrentDomain.UnhandledException  += OnUnhandledExceptionThrown;
    This handler is called from a background thread. The last statement in this handler is a call to
    Environment.Exit with the application exit code. However, the application hangs in this call. From within Visual Studio, it hangs and I'm unable to break the application; I have to use Task Manager to terminate Visual Studio. Environment.Exit
    works fine when called from the unhandled exception handler for the GUI thread. Is there a better way to terminate the application in the context of an unhandled exception thrown by a background thread?

    Are you just trying to avoid a crash? Environment.Exit can cause deadlocking if exiting in the wrong kind of scenario; if you're just trying to avoid a crash, use
    GetCurrentProcess with
    TerminateProcess to terminate your own process.  It skips the notification phases that Environment.Exit uses which prevents the common deadlock scenarios.
    WinSDK Support Team Blog: http://blogs.msdn.com/b/winsdk/

  • Concurrent Data Store (CDB) application hangs when it shouldn't

    My application hangs when trying to open a concurrent data store (CDB) database for reading:
    #0 0x0000003ad860b309 in pthread_cond_wait@@GLIBC_2.3.2 ()
    from /lib64/libpthread.so.0
    #1 0x00007ffff7ce67de in __db_pthread_mutex_lock (env=0x610960, mutex=100)
    at /home/steve/ldm/package/src/Berkeley-DB/dist/../mutex/mut_pthread.c:318
    #2 0x00007ffff7ce5ea5 in __db_tas_mutex_lock_int (env=0x610960, mutex=100,
    nowait=0)
    at /home/steve/ldm/package/src/Berkeley-DB/dist/../mutex/mut_tas.c:218
    #3 0x00007ffff7ce5c43 in __db_tas_mutex_lock (env=0x610960, mutex=100)
    at /home/steve/ldm/package/src/Berkeley-DB/dist/../mutex/mut_tas.c:248
    #4 0x00007ffff7d3715b in __lock_id (env=0x610960, idp=0x0, lkp=0x610e88)
    at /home/steve/ldm/package/src/Berkeley-DB/dist/../lock/lock_id.c:68
    #5 0x00007ffff7da1b4d in __fop_file_setup (dbp=0x610df0, ip=0x0, txn=0x0,
    name=0x40b050 "registry.db", mode=0, flags=1024, retidp=0x7fffffffdd94)
    at /home/steve/ldm/package/src/Berkeley-DB/dist/../fileops/fop_util.c:243
    #6 0x00007ffff7d70c8e in __db_open (dbp=0x610df0, ip=0x0, txn=0x0,
    fname=0x40b050 "registry.db", dname=0x0, type=DB_BTREE, flags=1024,
    mode=0, meta_pgno=0)
    at /home/steve/ldm/package/src/Berkeley-DB/dist/../db/db_open.c:176
    #7 0x00007ffff7d673b2 in __db_open_pp (dbp=0x610df0, txn=0x0,
    fname=0x40b050 "registry.db", dname=0x0, type=DB_BTREE, flags=1024, mode=0)
    at /home/steve/ldm/package/src/Berkeley-DB/dist/../db/db_iface.c:1146
    I suspect that the database environment believes that another process has the database open for writing. This cannot be the case, however, as all applications that access the database do so via an interface library I wrote that registers a termination function via the atexit() system-call to ensure that both the DB and DB_ENV handles are properly closed -- and all previously-executed applications terminated normally.
    The interface library opens the database like this (apparently, this forum doesn't support indentation, sorry):
    int status;
    Backend* backend = (Backend*)malloc(sizeof(Backend));
    if (NULL == backend) {
    else {
    DB_ENV* env;
    if (status = db_env_create(&env, 0)) {
    else {
    if (status = env->open(env, path,
    DB_CREATE | DB_INIT_CDB | DB_INIT_MPOOL, 0)) {
    else {
    DB* db;
    if (status = db_create(&db, env, 0)) {
    else {
    if (status = db->open(db, NULL, DB_FILENAME, NULL,
    DB_BTREE, forWriting ? DB_CREATE : DB_RDONLY, 0)) {
    else {
    backend->db = db;
    } /* "db" opened */
    if (status)
    db->close(db, 0);
    } /* "db" allocated */
    if (status) {
    env->close(env, 0);
    env = NULL;
    } /* "env" opened */
    if (status && NULL != env)
    env->close(env, 0);
    } /* "env" allocated */
    if (status)
    free(backend);
    } /* "backend" allocated */
    This code encounters no errors.
    The interface library also registers the following code to be executed when any process that uses the interface library exits:
    if (NULL != backend) {
    DB* db = backend->db;
    DB_ENV* env = db->get_env(db);
    if (db->close(db, 0)) {
    else {
    if (env->close(env, 0)) {
    else {
    /* database properly closed */
    As I indicated, all previously-executed processes that use the interface library terminated normally.
    I'm using version 4.8.24.NC of Berkeley DB on the following platform:
    $ uname -a
    Linux gilda.unidata.ucar.edu 2.6.27.41-170.2.117.fc10.x86_64 #1 SMP Thu Dec 10 10:36:29 EST 2009 x86_64 x86_64 x86_64 GNU/Linux
    Any ideas?

    Bogdan,
    That can't be it. I'm using a structured programming style in which the successful initialization of a cursor is ultimately followed by a closing of the cursor. There's only one place where the code does this and it's obvious that the cursor gets released.
    I've also read the CDB section.
    --Steve Emmerson                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Applications Hang when selecting / attaching a file using Spotlight

    Hi,
    Having a problem since upgrading to Snow Leopard with applications 'hanging' when trying to attach a file using Spotlight. I can repeatedly cause the failure in Mail and Safari - and probably others as well - but these two applications I use most often and need to attach files to most often.
    When I select "Attach a file", and use Spotlight to find the file to attach, the file dialog box closes and the attachment is apparently made - seconds later the spinning wheel appears and the dock tells me "Application Not Responding."
    Any ideas as to how / why this is happening? Help make it stop!
    Thank you,
    Gordon.

    OK Search box
    Mine is OK so something is screwy..
    In your Finder Prefs > Advanced > When performing a search drop down. Search this Mac seems to be default and the one I have set. Have you got it set to search the current folder or use the previous search instead?
    I'd then pull out the com.apple.finder.plist from your user Library > Preferences to the desktop and let finder make a new one. If all is OK trash the old one.
    Relaunch Finder by holding down the option key while right clicking Finder icon in the dock. Relaunch will be on the bottom of the context menu.
    S.

  • Multiple applications are crashing when I click on EDIT

    This is a weird one, just started this week. I'm on OS 10.9.5.
    Whenever I click on the EDIT tab in the toolbar in *multiple* applications: InDesign, Photoshop, MS Word, iTunes, Chrome, the application crashes. Firefox doesn't seem to be effected.
    The only activity immediately preceding the issue were 2 software updates to MEMORY CLEAN app which I've since deleted and to Pro Video Formats which I don't *think* I can un-install.
    Any ideas? Thx

    Not sure about Console, never had cause to use if before; here's the crash report (or the start of it) from Chrome....
    Process:         Google Chrome [975]
    Path:            /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
    Identifier:      com.google.Chrome
    Version:         39.0.2171.71 (2171.71)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [170]
    Responsible:     Google Chrome [975]
    User ID:         501
    Date/Time:       2014-12-06 12:09:17.194 -0700
    OS Version:      Mac OS X 10.9.5 (13F34)
    Report Version:  11
    Anonymous UUID:  83A7DAAE-5FFC-EE2A-5B60-F2E121F6F699
    Sleep/Wake UUID: 4DDE004F-466B-44DA-B87E-5096FAAF9689
    Crashed Thread:  0  CrBrowserMain  Dispatch queue: com.apple.CoreText.TCGFontCache
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00007fff5f11dff8
    VM Regions Near 0x7fff5f11dff8:
        MALLOC_SMALL           00007ffa3e800000-00007ffa3f000000 [ 8192K] rw-/rwx SM=PRV 
    --> STACK GUARD            00007fff5b91e000-00007fff5f11e000 [ 56.0M] ---/rwx SM=NUL  stack guard for thread 0
        Stack                  00007fff5f11e000-00007fff5f91e000 [ 8192K] rw-/rwx SM=COW  thread 0
    Thread 0 Crashed:: CrBrowserMain  Dispatch queue: com.apple.CoreText.TCGFontCache
    0   libdispatch.dylib             0x00007fff91965141 _dispatch_barrier_sync_f_invoke + 34
    1   com.apple.CoreText             0x00007fff877f221b TPurgeableCache<20ul>::RetainedValueForKey(void const*) + 149
    2   com.apple.CoreText             0x00007fff877f20e5 TCGFontCache::CopyFont(__CFURL const*, bool) const + 53
    3   com.apple.CoreText             0x00007fff877f1f35 TBaseFont::CopyNativeFont() const + 69
    4   com.apple.CoreText             0x00007fff877f1eb6 TBaseFont::CopyGraphicsFont() const + 26
    5   com.apple.CoreText             0x00007fff87858de7 TFontCascade::CreateSystemWideFallback(__CTFont const*, __CFString const*, CFRange) const + 67
    6   com.apple.CoreText             0x00007fff8781e664 TFontCascade::CreateFallback(__CTFont const*, __CFString const*, CTEmojiPolicy) const + 1606
    7   com.apple.CoreText             0x00007fff87842757 TGlyphEncoder::AppendUnmappedCharRun(TCFRef<CTRun*>&, __CTFont const*, CFRange, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const&, TGlyphEncoder::ClusterMatching) + 437
    8   com.apple.CoreText             0x00007fff878422fc TGlyphEncoder::RunUnicodeEncoderRecursively(TCFRef<CTRun*>&&, __CTFont const*, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const*, TGlyphEncoder::ClusterMatching, bool) + 1118
    9   com.apple.CoreText             0x00007fff87842b59 TGlyphEncoder::AppendUnmappedCharRun(TCFRef<CTRun*>&, __CTFont const*, CFRange, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const&, TGlyphEncoder::ClusterMatching) + 1463
    10  com.apple.CoreText             0x00007fff878422fc TGlyphEncoder::RunUnicodeEncoderRecursively(TCFRef<CTRun*>&&, __CTFont const*, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const*, TGlyphEncoder::ClusterMatching, bool) + 1118
    11  com.apple.CoreText             0x00007fff87842b59 TGlyphEncoder::AppendUnmappedCharRun(TCFRef<CTRun*>&, __CTFont const*, CFRange, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const&, TGlyphEncoder::ClusterMatching) + 1463
    12  com.apple.CoreText             0x00007fff878422fc TGlyphEncoder::RunUnicodeEncoderRecursively(TCFRef<CTRun*>&&, __CTFont const*, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const*, TGlyphEncoder::ClusterMatching, bool) + 1118
    13  com.apple.CoreText             0x00007fff87842b59 TGlyphEncoder::AppendUnmappedCharRun(TCFRef<CTRun*>&, __CTFont const*, CFRange, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const&, TGlyphEncoder::ClusterMatching) + 1463
    14  com.apple.CoreText             0x00007fff878422fc TGlyphEncoder::RunUnicodeEncoderRecursively(TCFRef<CTRun*>&&, __CTFont const*, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const*, TGlyphEncoder::ClusterMatching, bool) + 1118
    15  com.apple.CoreText             0x00007fff87842b59 TGlyphEncoder::AppendUnmappedCharRun(TCFRef<CTRun*>&, __CTFont const*, CFRange, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const&, TGlyphEncoder::ClusterMatching) + 1463
    16  com.apple.CoreText             0x00007fff878422fc TGlyphEncoder::RunUnicodeEncoderRecursively(TCFRef<CTRun*>&&, __CTFont const*, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const*, TGlyphEncoder::ClusterMatching, bool) + 1118
    17  com.apple.CoreText             0x00007fff87842b59 TGlyphEncoder::AppendUnmappedCharRun(TCFRef<CTRun*>&, __CTFont const*, CFRange, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const&, TGlyphEncoder::ClusterMatching) + 1463
    18  com.apple.CoreText             0x00007fff878422fc TGlyphEncoder::RunUnicodeEncoderRecursively(TCFRef<CTRun*>&&, __CTFont const*, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const*, TGlyphEncoder::ClusterMatching, bool) + 1118
    19  com.apple.CoreText             0x00007fff87842b59 TGlyphEncoder::AppendUnmappedCharRun(TCFRef<CTRun*>&, __CTFont const*, CFRange, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const&, TGlyphEncoder::ClusterMatching) + 1463
    20  com.apple.CoreText             0x00007fff878422fc TGlyphEncoder::RunUnicodeEncoderRecursively(TCFRef<CTRun*>&&, __CTFont const*, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const*, TGlyphEncoder::ClusterMatching, bool) + 1118
    21  com.apple.CoreText             0x00007fff87842b59 TGlyphEncoder::AppendUnmappedCharRun(TCFRef<CTRun*>&, __CTFont const*, CFRange, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const&, TGlyphEncoder::ClusterMatching) + 1463
    22  com.apple.CoreText             0x00007fff878422fc TGlyphEncoder::RunUnicodeEncoderRecursively(TCFRef<CTRun*>&&, __CTFont const*, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const*, TGlyphEncoder::ClusterMatching, bool) + 1118
    23  com.apple.CoreText             0x00007fff87842b59 TGlyphEncoder::AppendUnmappedCharRun(TCFRef<CTRun*>&, __CTFont const*, CFRange, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const&, TGlyphEncoder::ClusterMatching) + 1463
    24  com.apple.CoreText             0x00007fff878422fc TGlyphEncoder::RunUnicodeEncoderRecursively(TCFRef<CTRun*>&&, __CTFont const*, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const*, TGlyphEncoder::ClusterMatching, bool) + 1118
    25  com.apple.CoreText             0x00007fff87842b59 TGlyphEncoder::AppendUnmappedCharRun(TCFRef<CTRun*>&, __CTFont const*, CFRange, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const&, TGlyphEncoder::ClusterMatching) + 1463
    26  com.apple.CoreText             0x00007fff878422fc TGlyphEncoder::RunUnicodeEncoderRecursively(TCFRef<CTRun*>&&, __CTFont const*, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const*, TGlyphEncoder::ClusterMatching, bool) + 1118
    27  com.apple.CoreText             0x00007fff87842b59 TGlyphEncoder::AppendUnmappedCharRun(TCFRef<CTRun*>&, __CTFont const*, CFRange, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const&, TGlyphEncoder::ClusterMatching) + 1463
    28  com.apple.CoreText             0x00007fff878422fc TGlyphEncoder::RunUnicodeEncoderRecursively(TCFRef<CTRun*>&&, __CTFont const*, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const*, TGlyphEncoder::ClusterMatching, bool) + 1118
    29  com.apple.CoreText             0x00007fff87842b59 TGlyphEncoder::AppendUnmappedCharRun(TCFRef<CTRun*>&, __CTFont const*, CFRange, CFRange, TGlyphList<TDeletedGlyphIndex>&, TGlyphList<TDeletedGlyphIndex>&, TFontCascade const&, TGlyphEncoder::ClusterMatching) + 1463

  • Application hangs on filterFunction

    Hello all,
    I'll try to describe the problem before posting the code, which is a little bit long.
    I have a search popup with a dataGrid, who's dataProvider is connected to an ArrayCollection object, which is fed by a HTTPService that is reloaded every 5 minutes.
    When I launch the application for the first time and the popup is called, the application hangs. If I refresh the browser and repeat the exact same steps, the application works perfectly.
    The size of the data loaded into the ArrayCollection does not influence the results; I have tried with one record and the full size, 3Mb, and the problem keeps going on.
    Has someone gone through this issue before ? Any suggestions ?
    Thanks in advance.
    André

    First question is - did you get a thread dump?
    On Solaris, if you run the app in a terminal window, then type C-\ (control-backslash) you get a thread dump. What you'll be looking for is multiple threads "waiting for monitor" on the same object.
    - David

  • Multiple Safari hangs after installing Snow Leopard

    I had 5 Safari hangs today within hours...never had one since I bought the machine in June 2009 with Leopard installed...Since the SL upgrade CD, I have had 2 system freezes that result in a complete shutdown to clear and multiple Safari hangs that I able to recover with a force quit..My daughter in college with the same machine reported that she had 3 system freezes in one day since SL...My wife who did NOT yet install the SL upgrade and is now blissfully having no problems at all and does not want to install the new OS (again same machine type, We bought 3of them in June after the announcement). I hope that this gets debugged and fixes provided...

    Hi,
    Mac OS X 10.5: What you can do if Safari quits unexpectedly
    That links is for 10.5 but the trouble shooting will work in 10.6 also.
    For system freezes try maintenance.
    Maintaining Mac OS X
    On the Macs you upgraded to SL, did you check to see if you had 3rd party software installed that might not be compatible? http://support.apple.com/kb/HT3258
    Did you repair permissions after the upgrade?
    Quit any open applications/programs. Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    Carolyn

  • Application hangs on setVisible call in Solaris 8

    I have a Swing application that I am having trouble with. The swing part of it is simple enough, however it does use a C++ API with JNI. It all works perfectly on Linux. However in Solaris 8 the application hangs on the call to either myFrame.pack () or myFrame.setVisible (true). It simply never returns from either of these functions when called. It doesn't crash.
    I have commented out all of the JNI stuff to eliminate that as a possible cause. Oh and I am using the -d64 option on the JVM because the JNI library is 64 bit.
    Any thoughts?

    First question is - did you get a thread dump?
    On Solaris, if you run the app in a terminal window, then type C-\ (control-backslash) you get a thread dump. What you'll be looking for is multiple threads "waiting for monitor" on the same object.
    - David

  • Session cleanup issue with multiple Application servers

    Hi ,
    I am facing a strange problem with multiple application servers. The java Webdynro session does not get cleaned up completely when user closes the browser ( without using logoff ). On re-login it gets handle of old session and then fails for consecutive view on other webdynpro iviews with an invalid session error. It again starts working with a refresh event.
    Any ideas/suggestion if you have seen something similar before ?
    Thanks and regards,
    Amit.

    Hi Amit
    It seems that issues is not server related, but caused by your client browser. I know, for example, that IE8.0 keeps user session even if two separate browser instances opened on the same client machine. IE 7.0 and lower behave differently - they are separate user sessions per browser instance.
    BR, Siarhei

  • Random Application hangs having installed Mavericks 10.9.1

    Having installed mavericks 9.1 just before Christmas I find various applications hang at random points. I list some of those happening since 28th December:
    Finder "Open With"
    Save As (in Powerpoiint)
    Save AS (in Grab)
    Start Lightroom (get initial screen splash, lock the database but never get the Library screen up) Had this several times
    Start Elements 11
    On Opening USB memory stick
    On inserting CF card into reader
    On Saving an Excel file
    On loading a new page in Safari
    In Word on "save as"
    In Word when highlighting a word (to make it bold)
    In most cases (but not all) A Forced Quite leaves something in the running processes whiuch stops the application from starting again and stops me doing a clean shutdown (I have to do a power off and power on)
    After a restart, most of the time the application will start up cleanly but on at least two occasions I have had to reinstall mavericks as I couldn't get to the main screen (although in both cases a Safe start came up OK.
    I have done Disk checks on all disks with nothing showing.
    I have Console running but I can't recognise anything in there as being a significant error, along with Activity Monitor.
    I have also run Etrecheck and removed all startup items.
    I am running on an 18BG Early 2008 mac pro which has never suffered from this type of problem before. The only applications which give any hang dumps are Microsoft (Office 2011) which have been duly sent off.
    Can anybody suggest how to go about debugging this situation?

    This is a very common problem with Mavericks and Mountain Lion. I had this issue so many times and many others probably did too. I went into Preferences-->Security&Privacy and select "Anywhere" under allow apps from.
    If that doesn't work. You should repair disk permissions on your hard drive. There is a case where the files on the hard drive is not organized and therefore, the mac doesn't recognize it. Go into disk utility, select Macintosh HD or your mac partition, then press repair disk permissions. My macbook pro took 15 minutes for this disk repair process.

  • DRM Application Hang

    Is there any known issue regarding DRM Application Hang?
    we are frequently getting application hang error when all the following activities are running concurrently:
    -multiple active user connections.
    -blender/Automator running as a batch in the background
    -web interface communicating with DRM to perform updates/selects.
    The only way we are able to resolve this is by a windows server restart, even the console force stop/start does not work(console does not even start on an application hang)
    We have the DRM server on a Windows 2003 Terminal server and our Database is Oracle 11g on a unix box. Though we have some timelag due to physical locations of these servers, The performance has been ok which was manageable.
    Please let us know if there are any work arounds.
    Thanks
    S

    One thing I have observed was that the blender selections have a significant impact on its performance. If the blender has AllExcl\Val\Vefi selected under Hierarchy settings its takes more time eventually hanging up the system I think the performace is better when we have a selected property blend.
    I deal with huge hierarchies like close 200,000 nodes per hierarchy, and working with MDM i have found out that using automator updates works more efficiently than a blender and we have automated all that stuff using batch scripts.
    I also remember oracle running a fix for the blender issues we were having and haven't encountered it lately.
    TD

Maybe you are looking for