Memory and performance crashing 8.2.1

Hi there,
On both macOS and window XP the memory and perfomance profiler crashes the complee LV Dev Environment instantly
once the start button is click.  I update to LV8.2.1f4 same thing.
Also recently, after more than 5 years developing my application and in use during this period, 24 hours per day, with uptimes of 1- 2 months,  now after a certain number of measurement interations it crashes ( window xp  aplology meassage - ).
The WinXP event viewer states that my LV app crashed in a third party ActiveX module.
The ActiveX component has been used unchanged for more than 2 years so I doubt it is the problem, unless some window/lv update has caused it to hang.
I have carefully examined my code for nto closing refs and file pointers and notification quese that never get emptied/read
and i believe there are none, but of course i can never rule that out, but it is very minimal likely hood.
if i watch the memory use of the application in Windows Task manger i do see the memery increase very slowly, but that could also be just more data accumalating - althohg it is not stored in arrays but immediatly to file.
Any thoughts welcome.
michael proctor
Stanford University

Michael,
When LabVIEW crashes from running the performance and memory profiler, do you get the CPP error dialog the next time you start LabVIEW?  If so, I would suggest submitting an error report with it.  This will send us the error log file and help us determine what may have happened.
As for your application, you say this has not been changed and was running for five years, correct?  Has anything else changed on the computer?  Did you recently add new software to the system? 
How long does it take before the program crashes?  Is the time it takes reproduceable?  How long have you been seeing this behavior?  Did the crashes just suddenly start? 
In certain cases, shared resource conflicts or corrupt files could cause problems like this.  For XP, this can often be solved by doing a system restore to the time before the crashes started happening.
Regards,
Craig D
Applications Engineer
National Instruments

Similar Messages

  • Calculating the memory and performance of a oracle query

    Hi,
    I am now developing application in java with oracle as a back-end. In my application i require lot of queries to be executed. Hence, the system is getting is slow due to queries.
    So, i planned to develop one Stand-alone application in java, that should show the statistics like, memory and performance. for ex:- if i enter one SQL query in the text box, my standalone application should display, the processing time it requires to fetch the values and the memory is used for that query.
    Can anybody give ideas, suggestion, etc etc...
    Thanks in Advance
    Regards,
    Rajkumar

    This is now Oracle question, not JDBC question. :)
    Followings are sample for explain plan/autotrace/SQL*Trace.
    (You really need to read stuffs like Oracle SQL Tuning books...)
    SQL> create table a as select object_id, object_name from all_objects
    2 where rownum <= 100;
    Table created.
    SQL> create index a_idx on a(object_id);
    Index created.
    SQL> exec dbms_stats.gather_table_stats(user,'A');
    SQL>  explain plan for select from a where object_id = 1;*
    Explained.
    SQL> select from table(dbms_xplan.display());*
    PLAN_TABLE_OUTPUT
    Plan hash value: 3632291705
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    PLAN_TABLE_OUTPUT
    | 0 | SELECT STATEMENT | | 1 | 11 | 2 (0)| 00:00:01 |
    | 1 | TABLE ACCESS BY INDEX ROWID| A | 1 | 11 | 2 (0)| 00:00:01 |
    |* 2 | INDEX RANGE SCAN | A_IDX | 1 | | 1 (0)| 00:00:01 |
    PLAN_TABLE_OUTPUT
    Predicate Information (identified by operation id):
    2 - access("OBJECT_ID"=1)
    SQL> set autot on
    SQL> select * from a where object_id = 1;
    no rows selected
    Execution Plan
    Plan hash value: 3632291705
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 11 | 2 (0)| 00:00:01 |
    | 1 | TABLE ACCESS BY INDEX ROWID| A | 1 | 11 | 2 (0)| 00:00:01 |
    |* 2 | INDEX RANGE SCAN | A_IDX | 1 | | 1 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    2 - access("OBJECT_ID"=1)
    Statistics
    1 recursive calls
    0 db block gets
    1 consistent gets
    0 physical reads
    0 redo size
    395 bytes sent via SQL*Net to client
    481 bytes received via SQL*Net from client
    1 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    0 rows processed
    SQL> exec dbms_monitor.session_trace_enable(null,null,true,true);
    -- SQL> alter session set events '10046 trace name context forever, level 12';
    -- SQL> alter session set sql_trace = true;
    PL/SQL procedure successfully completed.
    SQL> select * from a where object_id = 1;
    no rows selected
    * SQL> exec dbms_monitor.session_trace_disable(null, null);*
    -- SQL> alter session set events '10046 trace name context off';
    -- SQL> alter session set sql_trace = false;
    PL/SQL procedure successfully completed.
    SQL> show parameter user_dump_dest
    */home/oracle/admin/WASDB/udump*
    SQL>host
    JOSS:oracle:/home/oracle:!> cd /home/oracle/admin/WASDB/udump
    JOSS:oracle:/home/oracle/admin/WASDB/udump:!> ls -lrt
    -rw-r----- 1 oracle dba 2481 Oct 11 16:38 wasdb_ora_21745.trc
    JOSS:oracle:/home/oracle/admin/WASDB/udump:!> tkprof wasdb_ora_21745.trc trc.out
    TKPROF: Release 10.2.0.3.0 - Production on Thu Oct 11 16:40:44 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    JOSS:oracle:/home/oracle/admin/WASDB/udump:!> vi trc.out
    select *
    from
    a where object_id = 1
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 1 0.00 0.00 0 1 0 0
    total 3 0.00 0.00 0 1 0 0
    Misses in library cache during parse: 0
    Optimizer mode: ALL_ROWS
    Parsing user id: 55
    Rows Row Source Operation
    0 TABLE ACCESS BY INDEX ROWID A (cr=1 pr=0 pw=0 time=45 us)
    0 INDEX RANGE SCAN A_IDX (cr=1 pr=0 pw=0 time=39 us)(object id 65441)
    Elapsed times include waiting on following events:
    Event waited on Times Max. Wait Total Waited
    ---------------------------------------- Waited ---------- ------------
    SQL*Net message to client 1 0.00 0.00
    SQL*Net message from client 1 25.01 25.01
    Hope this helps

  • Memory and performance  when copying a sorted table to a standard table

    Hello,
    As you all probably know, it's not possible to use a sorted table as a tables parameter of a function module, but sometimes you want to use a sorted table in your function module for performance reasons, and at the end of the function module, you just copy it to a standard table to return to the calling program.
    The problem with this is that at that moment, the contents of the table is in memory twice, which could result in the well known STORAGE_PARAMETERS_WRONG_SET runtime exception.                                                                               
    I've been looking for ways to do this without using an excessive amount of memory and still being performant.  I tried four methods, all have their advantages and disadvantages, so I was hoping someone here could help me come up with the best way to do this.  Both memory and performance are an issue. 
    Requirements :
    - Memory usage must be as low as possible
    - Performance must be as high as possible
    - Method must work on all SAP versions from 4.6c and up
    So far I have tried 3 methods.
    I included a test report to this message, the output of this on my dev system is :
    Test report for memory usage of copying tables    
    table1[] = table2[]                                        
    Memory :    192,751  Kb                                    
    Runtime:    436,842            
    Loop using workarea (with delete from original table)      
    Memory :    196,797  Kb                                    
    Runtime:  1,312,839        
    Loop using field symbol (with delete from original table)  
    Memory :    196,766  Kb                                    
    Runtime:  1,295,009                                                                               
    The code of the program :
    I had some problems pasting the code here, so it can be found at [http://pastebin.com/f5e2848b5|http://pastebin.com/f5e2848b5]
    Thanks in advance for the help.
    Edited by: Dries Horions on Jun 19, 2009 1:23 PM
    Edited by: Dries Horions on Jun 19, 2009 1:39 PM
    Edited by: Dries Horions on Jun 19, 2009 1:40 PM
    Edited by: Dries Horions on Jun 19, 2009 1:40 PM

    I've had another idea:
    Create a RFC function like this (replace SOLI_TAB with your table types):
    FUNCTION Z_COPY_TABLE .
    *"*"Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(IT_IN) TYPE  SOLI_TAB
    *"  EXPORTING
    *"     VALUE(ET_OUT) TYPE  SOLI_TAB
    et_out[] = it_in[].
    ENDFUNCTION.
    and then try something like this in your program:
    DATA: gd_copy_done TYPE c LENGTH 1.
    DATA: gt_one TYPE soli_tab.
    DATA: gt_two TYPE soli_tab.
    PERFORM move_tables.
    FORM move_tables.
      CLEAR gd_copy_done.
      CALL FUNCTION 'Z_COPY_TABLE'
        STARTING NEW TASK 'ztest'
        PERFORMING copy_done ON END OF TASK
        EXPORTING
          it_in = gt_one[].
      CLEAR gt_one[].
      WAIT UNTIL gd_copy_done IS NOT INITIAL.
    ENDFORM.
    FORM copy_done USING ld_task TYPE clike.
      RECEIVE RESULTS FROM FUNCTION 'Z_COPY_TABLE'
       IMPORTING
         et_out        = gt_two[].
      gd_copy_done = 'X'.
    ENDFORM.
    Maybe this is a little bit faster than the Memory-Export?
    Edited by: Carsten Grafflage on Jul 20, 2009 11:06 AM

  • Printing memory and performance optimization

    Hello,
    I am using JVM 1.3 for a big Java Application.
    Print Preview consumes 1.5MB of JVM's memory and performance is slow.
    Please give your valuable ways to reduce memory usage and performance improvement
    will be appreciated.
    /* print method in ScrollablePanel extends JPanel */
         public int print(Graphics g, PageFormat pf, int pi) throws PrinterException
              double pageHeight = 0;
              double pageWidth = 0;
              Graphics2D g2 = (Graphics2D)g;
              pageWidth = pf.getImageableWidth();
              if (pi >= pagecount)
                   return Printable.NO_SUCH_PAGE;
              g2.translate(pf.getImageableX(),pf.getImageableY());
    // < Print Height manipultion>
              g2.setClip(0,(int)(startHeight[pi]), (int) pageWidth, (int)(endHeight[pi] - startHeight[pi]) );
              g2.scale(scaleX,scaleX);
              this.print(g2);
              g2.dispose();
              System.gc();
              return PAGE_EXISTS;
    /* print preview */
    private void pagePreview()
    BufferedImage img = new BufferedImage(m_wPage, m_hPage, BufferedImage.TYPE_INT_ARGB);
    Graphics g = img.getGraphics();
    g.setColor(Color.white);
    g.fillRect(0, 0, m_wPage, m_hPage);
    target.print(g, pageFormat, pageIndex);
    pp = new PagePreview(w, h, img); // pp is JPanel
    g.dispose();
    img.flush();
    m_preview = new PreviewContainer(); //m_preview is JPanel
    m_preview.add(pp);
    ps = new JScrollPane(m_preview);
    getContentPane().add(ps, BorderLayout.CENTER);
    Best Regards,
    Krish

    Good day,
    As I tried, there are two ways of doing printPreview.
    To handle this problem, add only one page at a time.
    To browse through the page use Prev Page, Nexe Page buttons in the toolbar.
    1) BufferedImage - occupies memory .
    Class PagePreview extends JPanel
    public void paint(Graphics g) {
    g.setColor(getBackground());
    g.fillRect(0, 0, getWidth(), getHeight());
    g.drawImage(m_img, 0, 0, this);
    paintBorder(g);
    This gives better performance, but consumes memory.
    2) getPageGraphics in the preview panel . This occupies less memory, but re-paint the graphics everytime when paint(Graphics g) is called.
    Class PagePreview extends JPanel
    public void paint(Graphics g)
    g.setColor(Color.white);
    RepaintManager currentManager = RepaintManager.currentManager(this);
    currentManager.setDoubleBufferingEnabled(false);
    Graphics2D g2 = scrollPanel.getPageGraphics();
    currentManager.setDoubleBufferingEnabled(true);
    g2.dispose();
    This addresses memory problem, but performance is better.
    Is there any additional info from you?
    Good Luck,
    Kind Regards,
    Krish

  • Why do my apps say I need more memory and always crash when I have more than 4 gigabytes of space free?

    So, I have over 4 free gigabytes of space on my iPhone, but whenever I open apps these days they either crash without warning or give me a pop up warning that says I'm running out of memory space, then crash. How do I find out how much memory I have and how do I clear some space?

    You can look in the setting of you iPhone or plug it into iTunes and look at the bottom of the screen to see how much space you have.
    To free up space, remove content from the iPhone.

  • Memory and Performance, and Arrays of Objects.

    I have a Class called ChannelObject. The Class has 15 to 20 primitive types. Each object of this class represents data read in from a file or received over a network. I don't know how many of these objects will be created, it could be anywhere between 0 and 5 million.
    Which would be a better way to store these objects?
    1. In an ArrayList(since it's dynamic and I can add to it when I have data, but I've read that an ArrayList isn't good when you're adding the same type of object) or
    2. A very large array(that could be mostly empty and wasted space)
    3. Or another option?
    I am concerned about the speed and memory of this program since it has the possibility of processing a great deal of data.
    Thank You in Advance!

    My ChannelObject Class has several primitive types.
    long time;
    float elevation;
    float meas1;
    float meas2;
    float meas3;
    float meas4;
    boolean statusFlag;
    ... There about 10 more variables.
    int crc;
    The Constructor for my Class takes a DataInputStream, checks the crc to verify the data, and then breaks the DataInputStream into the primitive types.
    Once I have read in the hole file or collected a day or more of data from the network, I want to scroll through the data and modify some of the data using a kalman filter and another smoothing filter. I receive a new data point once a second. This package is a building block for several other programs that will use it. Some of those programs will want to sue a days worth of data and some will want 3 months.
    The data will be in order of time(I hope), and there is the possibily that I will have no data from either a network outage or the site that sends us the data can crash.
    When scrolling through the data I will start at the first time(I'm assuming that's the first Object in my list), and using the initial states of my kalman filter, I will modify meas1 and meas2. Now that I have data I will update the constraints of the filter using this time and I will move onto the next time and repeat the process. Once I finish this run, I will have to do another run that will use my smoothing filter and modify meas3 and meas4. Both filters are dependent on time/order of the data.
    I hope I explained this well enough.
    Thanks
    PS: If anyone knows of a Kalman Filter class that's already been written, I'd appreciate not having to migrate my c version. Thanks Again!

  • Running out of cursors, memory and performance

    1. using xsql servlet .9.9.1 command-line with a query that involves cursor expressions, grouping and a join, i run into the following error:
    <ERROR>oracle.xml.sql.OracleXMLSQLException: ORA-00604: error occurred at recursive SQL level 1
    ORA-01000: maximum open cursors exceeded
    </ERROR>
    using a quick program with OracleXMLQuery from XSU 1.2, i get the same error with the same query.
    the database i'm testing is supposed to return 1 million+ rows; only 300 or so can be returned if i specify maxrows to be 300. anything beyond that gives me the cursor error.
    SQL*Plus handles the query just fine.
    2. if i take away the cursor expression in the query, and remove the maxrow spec, i get a java out of memory error.
    3. i can't enhance the performance via using OracleConnection object and wanting to use cursor expressions with XSU at the same time. i get a "protocol error" instead.
    So the questions are:
    1. how can i resolve the cursor issue for the result set size i'm trying to retrieve?
    2. how can i resolve the memory issue for the result set size i'm trying to retrieve? since XSU tries to load the entire result set into memory to build the DOM tree, is it possible to stream it out so that it doesn't have to be capped by memory limitations? if so, do you have sample code i can take a look at?
    3. is it possible to tune the oracle jdbc in conjunction of the use of XSU?
    null

    We are encountering the same problem. We are just inserting via http and no matter how we do things we end up running out of cursors. We are using the production version of the servlet. Have you been able to resolve your problem and do you know if there is a fix. Thanks for any information.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by alfred h:
    1. using xsql servlet .9.9.1 command-line with a query that involves cursor expressions, grouping and a join, i run into the following error:
    <ERROR>oracle.xml.sql.OracleXMLSQLException: ORA-00604: error occurred at recursive SQL level 1
    ORA-01000: maximum open cursors exceeded
    </ERROR>
    using a quick program with OracleXMLQuery from XSU 1.2, i get the same error with the same query.
    the database i'm testing is supposed to return 1 million+ rows; only 300 or so can be returned if i specify maxrows to be 300. anything beyond that gives me the cursor error.
    SQL*Plus handles the query just fine.
    2. if i take away the cursor expression in the query, and remove the maxrow spec, i get a java out of memory error.
    3. i can't enhance the performance via using OracleConnection object and wanting to use cursor expressions with XSU at the same time. i get a "protocol error" instead.
    So the questions are:
    1. how can i resolve the cursor issue for the result set size i'm trying to retrieve?
    2. how can i resolve the memory issue for the result set size i'm trying to retrieve? since XSU tries to load the entire result set into memory to build the DOM tree, is it possible to stream it out so that it doesn't have to be capped by memory limitations? if so, do you have sample code i can take a look at?
    3. is it possible to tune the oracle jdbc in conjunction of the use of XSU?
    <HR></BLOCKQUOTE>
    null

  • Low memory and app crashes

    anybody else getting low memory warnings when using certain apps? is there a fix for this? say deleting apps?

    anybody else getting low memory warnings when using certain apps?
    Alas, our mindreading caps are at the cleaners. Which apps?
    For example, "Aurora Feint" is an app that's well known to give that error.
    Try force-quitting Safari and those apps, then try again. (Hold down Home button while on the app, until the application is forced to quit.)

  • Google Earth low on memory and crashing

    I'm using an ipad Air with maximum storage and latest iOS. Google Earth, previously a reliable app, is now consistently reporting low in memory and quickly crashing when in Stree View.
    I've tried rebooting with no change.
    Groan. I see Safari is still not working properly when composing messages here. Seems worse than last iOS version. Autocorrect not reliable and my KB shortcuts no longer work, e.g. To enter my Sig. And those misplaced caps...
    TErry, UK

    (A) Try reset iPad
    Hold the Sleep/Wake and Home button down together until you see the Apple Logo.
    Note: Data will not be affected.
    (B) Close all apps in the multi-task window
    1.Double-click the Home button.
    2. Swipe the app's preview up to close it.
    3. Preview will fly off the screen.

  • Poor Performance after start up and Frequent Crashes

    I have a brand new imac i order a little over 6 months ago, i immediately migrated my old imac's files to the new mac and everything worked great but then slowly began to degrade in performance and now i have nothing but problems that have gotten worse.
    The first problem occurred with a slow performance speed after about a month of amazing performance.
    Then I noticed the new magic mouse i had ordered with the computer would lose connection with the computer causing it to crash, also the new mouse would not hold a charge for long. My last magic mouse did not have this issue.
    My computer would fall asleep and then i could be unable to wake it by using my mouse, even plugging in an apple pro wired mouse would not work, i had to turn the power on and off to restart
    My bluetooth was acting funny trying to connect to devices i hadn't authorized
    Then came a kernel crash.
    Then came apple 3 tired support who after weeks of diagnosis over the phone were stumped.
    I tried the following to fix the problems myself:
    reset the Pram
    Repaired Disk Permissions
    Checked the hardware
    reinstalled the OS
    Checked for and installed all software updates
    Reset the SMC
    Ran 3rd party software "mackeeper" to optimize my files and check for viruses
    Clean up unneeded files so plenty of memory
    And finally downloaded a 3rd part program called "idrefrag" to defrag my system files.
    nothing worked
    I was unable to take additional time to deal with the issue, i work and attend school online and was extremely busy during the summer so i had to just deal with the issues because being without my computer was not an option i had.
    After my busy summer ended, the problems had only gotten worse
    Now, not only does the mac fall asleep and not wake up and not respond to the magic mouse to wake up or reconnect when the mouse and mac lose signal, but now when i plug in a usb flash drive to my external flash drive port, it's like playing russian roulette, half the time it's fine, the other half the computer freeze upon insertion of the drive. I shouldn't have so much anxiety plugging in a 8gb flash drive.
    but now on to the worst part, before the summer when i had to restart after crashes it was normal, but now when i restart, the computer acts like it has to remember how to even be a computer again. Upon restarting after the classic Mac tone:
    My mac desktop begins to reload, although the icons on the top right appear then disappear and then appear to load back up very slowly.
    Moving files to another folder or tp the trash is painstakingly slow, i get a message saying "preparing to move file" that goes on for 10 minutes.
    Simple tasks like trying to copy and paste or access my "places" on the side bar like "movies, "Pictures" etc cause a pinwheel and then each "place" has to load all the files as if it's searching the computer for them all before i have access to them, this can take 5-10 minutes
    When i click on an application from the dock to load, it just bounces for a while and then finally starts up but takes 5 minutes or more to be able to access without a pinwheel
    Overall the computer basically forgets how to be a computer and has to relearn how to do the simplest tasks, the next 24 hours is plagued by pinwheels and slow performance and then it acts fine again, but i can never shut it down or it start all over again, so i just let it fall asleep when not in use and cross my fingers that when i come back it will respond to the mouse and wake up, half the time it does, the other half, i have to restart by holding the power button down and then pressing it to start up again.
    I had to just adapt, so i have a good system down now and so when I restart i run the system disk utility and repair the HD 1 & 2 's permission which always seems to have a lot of issues and that kinda helps speed along the 24 hour relearning process. But i shouldn't have to do all this stuff, i spent 3,000 on this computer, i bought all the upgrades and after a couple of months of amazing performance i was left with a time bomb and 3 tier apple support who have no idea where to go and now wont even call me back despite my paying for 4 years of apple care, I am at a total loss of what to do, i can't afford to send the machine off for diagnosis and repair and frankly think Apple should send me a new machine since not only does the mac itself present problems, but so does the new magic mouse, and the rechargeable batteries and charger i purchased from them as well.
    My Mac info:
    Mac OS X Version 10.6.8
    Model Name:          iMacModel Identifier:          iMac12,1
    Processor Name:          Intel Core i7
    Processor Speed:          2.8 GHz
    Number of Processors:          1
    Total Number of Cores:          4
    L2 Cache (per Core):          256 KB
    L3 Cache:          8 MB
    Memory:          16 GB
    Serial -ATA
    any suggestions?

    Thats a shame, you should be enjoying your mac!, what was the final outcome of the Apple support guys?. I think if it were me and i had tried tried everything that you have including the support tech. i would be pressing for a replacement mac.

  • IOS8 Slow Performance, Keyboard Bugs and App Crashes on iPhone 5

    Since updating my iPhone 5 to iOS8, performance has slowed considerably: Apps take longer to launch and interface animation stutters.
    When turning the phone on and off, the screen goes black - I have to keep pressing the on/off sleep/wake switch to get the screen to illuminate.
    Typing this in landscape on my iPhone 5 (using the standard keyboard - I've not tried installing any third party keyboards yet) is taking ages: There are now only two lines of text visible due to the word-suggestion feature. I've just noticed as I type this that the text display isn't automatically scrolling, so unless I manually scroll down the window, I can't see what I'm typing!
    Positioning the magnifying glass is challenging - its position is not following my finger! The behaviour of the backspace is also unpredictable . . . and I am now typing this on my Mac because Safari crashed mid-sentene ! (Thank goodness this site auto-saves - I didn't have to start again when I logged into my Mac!)
    I like all the new iOS8 features (although the key feature for me - the health app - is not linking to any fitness apps yet due to an Apple-acknowledged bug). But the performance hit, bugs and app crashing created by the iOS8 upgrade means I now want to return to iOS7.
    I'm surprised at these issues because, unlike previous iOS releases, IOS 8 was in public beta for a few months, as well as being with developers since WWDC.
    If Apple are going to move iOS deeper into the enterprise (with IBM for example) its needs to prioritise stability - even if it means moving from an annual upgrade cycle. Apple hasn't managed this with Mac OS - the last three Mac OS updates have not been usable in an enterprise/Pro App environment until around 9 months after their release.
    Message was edited by: KWiPod

    ios8 for my iphone 5 = crashes, hot phone, restarts, dropped calls, funny looking fuzzy 'senior picture screen' with frost on the perimeter.....  Just opening 'message' for texts takes 3-4 seconds to load, where previously, it was milliseconds latency speeds.  I think they pressed this OS beyond the reasonable functional limit of the hardware (phones), especially with the older phones and/or phones with less memory.
    It's like an athlete on steroids, the bones can't handle the force of the muscles and something is gonna BREAK!
    When did we ever come to think that $400 phones would become 2-4 year disposable items and revere at the glory of it all!  And whether we realize it or not, it's being shoved down our throats.
    Just fix the OS please so my phone can work for me as it has in the past.
        For the $$ being paid out, we shouldn't have to reset, restart, restore......
    DB
    -kinda reminds me of the iRobot update-

  • Memory management in jelly bean xperia tablet s and performance issues

    Most used apps are always in memory.
    while recent apps few remain in memory untill memory is full.
    this is how memory management is supose to work.
    pretty much same as windows 7
    but if this true then why are games lagging ?
    http://www.youtube.com/watch?v=S3TwBlW5ibk
    When their not enough memory games i suspect lagging.
    if their not enough memory recent apps getting killed to free up ram.
     why does't this happen ?
    And why are their apps in memory that i never use ?
    tv sideview never use why its in memory ?
    social life again never use again using memory
    reader widget again using ram again never use at all
    music unlimited again in memory never actualy use
    Like i say'd most used apps are in memory all the time while rest is in cache.
    But my most used apps are never in ram untill i start them
    now if disabled lot apps my tablet become much faster respondsive.
    Can sony plz plz plz plz fix memory management stop saying you did ?
    You maybe reduced random shutdowns by like 90% or 95% perhaps even 99.99%
    Before random shutdowns happend because of broken memory management, which obviously still broken as i see lag in games
    sony apps use way to much ram, stop treating it like a computer with infinity amount of ram

    I rooted my tablet, and when looking at the processor speed in SetCPU, Sony uses a governor for power management that makes the tablet run jagged... I changed the power governor to ondemand, and got MUCH better smoothness and performance, while not sacrificing my battery life. You should try it out, maybe that'll help with games and such.

  • PSE crashes when using the Detail Smart Brush  plenty of memory and speed -please advise

    PSE crashes when using the Detail Smart Brush  plenty of memory and speed -please advise

    I have a similar thing happening here, but on my aging iMac8,1 (3.06, 6 gigs of ram, plenty of internal and external scratch space) No wacom here, a Logitech mouse though, running via USB overdrive.
    With me it's undos that are typically causing the hang, and as such, I notice it happening and don't keep clicking around. It hangs for anywhere from 30 seconds to 3 minutes or so and then I can continue working.  Once, it was happening on a document I had open for a while, once it was occurring on a file I opened, made an errant click, and hit undo.  This was a 46.6 MB CMYK tif. I also had it occur while drawing a simple selection with the polygonal lasso - each time it would hang on the third click.  That time, it would unhang, but then the selection would be all messed up and not display what was being selected.
    Each time it happens, I see photoshop pinned at 99-100% in iStat.  Doesn't seem to be related to running out of memory, as there is usually a good amount free when it's happening.  I tried using the internal drive as the swap, and that didn't seem to matter.
    I've been forced to go back to CS5 for the time being, but would love to see this solved.  Is there any further info I could provide?

  • After updating to vr. 3.6.17 Firefox starts grabbing memory, cpu goes to 100%, and it crashes w/o a crash report, 2-3 times a day

    OS Win2K sp4 AMD Atholn x2
    Firefox announces it cannot provide a crash report on the crash

    I have similar problem only using XPPro/SP3. Once open even if just sitting unused it continues to gobble memory and crashes. It crashed a couple of times a day since the update, has locked the system up a couple of times and crashed a total of 14 times today, the last three while trying to send crash reports. All since the 3.6.17 update. It has become unusable (I'm posting this from Opera 11). From scanning the forum looks like Apple folks are having similar problems with the last update as well.
    If I was of a paranoid turn of mind I'd think it was a way to get people to move to FF4.

  • How do get rid of this webkit2webprocess file eating up memory and crashing my browser every time

    This file is definitely bugging me I have tried everything but every time this file starts eating up memory and slowing down the computer isthere a solution for this we have the i5 coming out nowbut this has been constantly nagging and isee somany issues with so many people is apple doing anything about it???

    Thank you for your assistance. It was a corrupted preference file and your post resolved my problem. I have had a number of problems with preference file under lion.

Maybe you are looking for