Memory usage/freeze/crash modifying multiple objects

I'm getting Labview hanging issues when I try to modify front panel objects while editing (not running).  It seems to be a general problem but this is the current scenario.  Many charts on my front panel (over thirty), so I multiple select, and RClick>Properties.  Watching Labview in Task Manager, I watch the Memory usage climb from about 90MB to 600MB.  And it takes a minute at least!  I can then change properties (plot scale ranges), and after more pausing, the dialog closes.  Soon after, I'll get a fatal error and LV crashes.  Something wrong here; I thought maybe it's my computer, but how can it take 0.5GB to load 30 chart property sets?  Core i5, LV2011, Win7.

johnsold wrote:
Do you have the chart history lengths set to large values (many MB)?  Do you have significant amounts of data saved as default in the charts?
Try clearing the charts, one at a time if necessary, first.
Charts have internal buffers. So LV may be trying to make backup copies so that you can undo if you change your mind.  Charts are generally not a good way to manage large amounts of data.  I use as a rule of thumb: Do not keeping more data in a chart than the number of pixels in its width.
Lynn
I aggree that crashing could be due to the amount of data in the charts. Try clearing them and saving the cleared chart as the default before doing the multiple object selection.
I guess I live a more dangerous life-style that Lynn in that I'll allow more data points than pixels simply because LV is "SO DAMN GOOD" at rendering down the data and supporting zooming. "In the old days" it was a common technique to reduce the data sets presented to charts to avaoid killing the CPU. So Lynn's "rule of thumb" is consistent with history. modern CPU can handle the abuse much better now so I can get away with living close to the edge.
Sharing thoughts,
Ben
Ben Rayner
I am currently active on.. MainStream Preppers
Rayner's Ridge is under construction

Similar Messages

  • Cisco 5508 Memory Usage

    What is the average memory usage for a Cisco 5508 with 500 APs (mostly 3502s) running 7.0.116.0 code? I am currently at 450 access points and have 80% memory usage should I be concerned?

    Tom,
         I just had a 5508 in production hit 89% memory usage and crash… I have opened a TAC case and I will update once more information is available. The controller rebooted and came right back online at 56% memory usage; I suggest rebooting it during downtime.
    Bill

  • Memory usage of excel stays high after Macro is executed and excel crashes after trying to close it

    Hi,
    I'm trying to resolve an issue with an excel based tool. The macros retrieve data from an Oracle database and do calculations with the data. They also open and write into files in the same directory. The macros all run and finish the calculations. I can
    continue to use and modify the sheet. I can also close the workbook, however excel memory usage I see in the windows Task manager stays elevated.If I  close Excel it says: Excel stopped working and then it tries to recover information...
    I assume something in the macro did not finish properly and memory was not released. I would like to check what is still open (connection, stream or any other object) when I close the workbook I would like to have a list of all still used memory. Is there
    a possibility to do so.
    Here the code I'm using, its reduced to functions which open something. Functions   
    get_v_tools() and get_change_tools() are same as get_client_positions().
    Public conODBC As New ADODB.Connection
    Public myPath As String
    Sub get_positions()
    Dim Src As range, dst As range
    Dim lastRow As Integer
    Dim myPath As String
    lastRow = Sheets("SQL_DATA").Cells(Sheets("SQL_DATA").rows.Count, "A").End(xlUp).Row
    Sheets("SQL_DATA").range("A2:AD" & lastRow + 1).ClearContents
    Sheets("SQL_DATA").range("AG2:BE" & lastRow + 2).ClearContents
    Sheets("SQL_DATA").range("AE3:AF" & lastRow + 2).ClearContents
    k = Sheets("ToolsList").Cells(Sheets("ToolsList").rows.Count, "A").End(xlUp).Row + 1
    Sheets("ToolsList").range("A2:M" & k).ClearContents
    'open connection
    Call open_connection
    lastRow = Sheets("SQL_DATA").Cells(Sheets("SQL_DATA").rows.Count, "A").End(xlUp).Row
    If lastRow < 2 Then GoTo ErrorHandling
    'copy bs price check multiplications
    Set Src = Sheets("SQL_DATA").range("AE2:AF2")
    Set dst = Worksheets("SQL_DATA").range("AE2").Resize(lastRow - 1, Src.columns.Count)
    dst.Formula = Src.Formula
    On Error GoTo ErrorHandling
    'new prices are calculated
    newPrice_calculate (lastRow)
    Calculate
    myPath = ThisWorkbook.Path
    'Refresh pivot table in Position Manager
    Sheets("Position Manager").PivotTables("PivotTable3").ChangePivotCache ActiveWorkbook. _
    PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
    myPath & "\[Position_Manager_v1.0.xlsm]SQL_DATA!R1C2:R" & lastRow & "C31" _
    , Version:=xlPivotTableVersion14)
    ErrorHandling:
    Set Src = Nothing
    Set dst = Nothing
    If conODBC.State <> 0 Then
    conODBC.Close
    End If
    End Sub
    Sub open_connection()
    Dim sql_data, sql_data_change, sql_data_v As Variant
    Dim wdth, TotalColumns, startRow As Integer
    Dim rst As New ADODB.Recordset
    Errorcode = 0
    On Error GoTo ErrorHandling
    Errorcode = 1
    With conODBC
    .Provider = "OraOLEDB.Oracle.1"
    .ConnectionString = "Password=" & pswrd & "; Persist Security Info=True;User ID= " & UserName & "; Data Source=" & DataSource
    .CursorLocation = adUseClient
    .Open
    .CommandTimeout = 300
    End With
    startRow = Sheets("SQL_DATA").Cells(Sheets("SQL_DATA").rows.Count, "A").End(xlUp).Row + 1
    sql_data = get_client_positions(conODBC, rst)
    wdth = UBound(sql_data, 1)
    Sheets("SQL_DATA").range("A" & startRow & ":AA" & wdth + startRow - 1).Value = sql_data
    'Run change tools instruments
    startRow = Sheets("ToolsList").Cells(Sheets("ToolsList").rows.Count, "A").End(xlUp).Row + 1
    sql_data_change = get_change_tools(conODBC, rst)
    wdth = UBound(sql_data_change, 1)
    Sheets("ToolsList").range("A" & startRow & ":M" & wdth + startRow - 1).Value _
    = sql_data_change
    'open SQL for V tools instruments
    startRow = Sheets("ToolsList").Cells(Sheets("ToolsList").rows.Count, "A").End(xlUp).Row + 1
    sql_data_v = get_v_tools(conODBC, rst)
    wdth = UBound(sql_data_v, 1)
    Sheets("ToolsList").range("A" & startRow & ":L" & startRow + wdth - 1).Value = sql_data_v
    conODBC.Close
    ErrorHandling:
    If rst.State <> 0 Then
    rst.Close
    End If
    Set rst = Nothing
    End Sub
    Private Function get_client_positions(conODBC As ADODB.Connection, rst_posi As ADODB.Recordset) As Variant
    Dim sql_data As Variant
    Dim objCommand As ADODB.Command
    Dim sql As String
    Dim records, TotalColumns As Integer
    On Error GoTo ErrorHandling
    Set objCommand = New ADODB.Command
    sql = read_sql()
    With objCommand
    .ActiveConnection = conODBC 'connection for the commands
    .CommandType = adCmdText
    .CommandText = sql 'Sql statement from the function
    .Prepared = True
    .CommandTimeout = 600
    End With
    Set rst_posi = objCommand.Execute
    TotalColumns = rst_posi.Fields.Count
    records = rst_posi.RecordCount
    ReDim sql_data(1 To records, 1 To TotalColumns)
    If TotalColumns = 0 Or records = 0 Then GoTo ErrorHandling
    If TotalColumns <> 27 Then GoTo ErrorHandling
    If rst_posi.EOF Then GoTo ErrorHandling
    l = 1
    Do While Not rst_posi.EOF
    For i = 0 To TotalColumns - 1
    sql_data(l, i + 1) = rst_posi.Fields(i)
    Next i
    l = l + 1
    rst_posi.MoveNext
    Loop
    ErrorHandling:
    rst_posi.Close
    Set rst_posi = Nothing
    Set objCommand = Nothing
    get_client_positions = sql_data
    End Function
    Private Function read_sql() As String
    Dim sqlFile As String, sqlQuery, Line As String
    Dim query_dt As String, client As String, account As String
    Dim GRP_ID, GRP_SPLIT_ID As String
    Dim fso, stream As Object
    Set fso = CreateObject("Scripting.FileSystemObject")
    client = Worksheets("Cover").range("C9").Value
    query_dt = Sheets("Cover").range("C7").Value
    GRP_ID = Sheets("Cover").range("C3").Value
    GRP_SPLIT_ID = Sheets("Cover").range("C5").Value
    account = Sheets("Cover").range("C11").Value
    sqlFile = Sheets("Cover").range("C15").Value
    Open sqlFile For Input As #1
    Do Until EOF(1)
    Line Input #1, Line
    sqlQuery = sqlQuery & vbCrLf & Line
    Loop
    Close
    ' Replace placeholders in the SQL
    sqlQuery = Replace(sqlQuery, "myClent", client)
    sqlQuery = Replace(sqlQuery, "01/01/9999", query_dt)
    sqlQuery = Replace(sqlQuery, "54747743", GRP_ID)
    If GRP_SPLIT_ID <> "" Then
    sqlQuery = Replace(sqlQuery, "7754843", GRP_SPLIT_ID)
    Else
    sqlQuery = Replace(sqlQuery, "AND POS.GRP_SPLIT_ID = 7754843", "")
    End If
    If account = "ZZ" Then
    sqlQuery = Replace(sqlQuery, "AND AC.ACCNT_NAME = 'ZZ'", "")
    Else
    sqlQuery = Replace(sqlQuery, "ZZ", account)
    End If
    ' Create a TextStream to check SQL Query
    sql = sqlQuery
    myPath = ThisWorkbook.Path
    Set stream = fso.CreateTextFile(myPath & "\SQL\LastQuery.txt", True)
    stream.Write sql
    stream.Close
    Set fso = Nothing
    Set stream = Nothing
    read_sql = sqlQuery
    End Function

    Thanks Starain,
    that's what I did the last days and found that the problem is in the
    newPrice_calculate (lastRow)
    function. This function retrieves data (sets it as arrays) which was correctly pasted into the sheet, loops through all rows and does math/calendar calculations with cell values using an Add-In("Quantlib")
    Public errorMessage as String
    Sub newPrice_calculate(lastRow)
    Dim Type() As Variant
    Dim Id() As Variant
    Dim Price() As Variant
    Dim daysTo() As Variant
    Dim fx() As Variant
    Dim interest() As Variant
    Dim ObjCalend as Variant
    Dim newPrice as Variant
    On Error GoTo Catch
    interest = Sheets("SQL_DATA").range("V2:V" & lastRow).Value
    Type = Sheets("SQL_DATA").range("L2:L" & lastRow).Value Id = Sheets("SQL_DATA").range("M2:M" & lastRow).Value Price = Sheets("SQL_DATA").range("T2:T" & lastRow).Value
    daysTo = Sheets("SQL_DATA").range("K2:K" & lastRow).Value
    fx = Sheets("SQL_DATA").range("U2:U" & lastRow).Value
    qlError = 1
    For i = 2 To lastRow
    If (i, 1) = "LG" Then
    'set something - nothing spectacular like
    interest(i, 1) = 0
    daysTo(i , 1) = 0
    Else
    adjTime = Sqr(daysTo(i, 1) / 365)
    ObjCalend(i,1) =Application.Run("qlCalendarHolidaysList", _
    "CalObj", ... , .... other input parameters)
    If IsError(ObjCalend(i,1)) Then GoTo Catch
    'other calendar calcs
    newPrice(i,1) = Application.Run( 'quantLib calcs)
    End If
    Catch:
    Select Case qlError
    Case 1
    errorMessage = errorMessage & " QuantLibXL Cal Error at: " & i & " " & vbNewLine & Err.Description
    ObjCalend(i,1) (i, 1) = "N/A"
    End Select
    Next i
    Sheets("SQL_DATA").range("AB2:AB" & lastRow).Value = newPrice
    'Sheets("SQL_DATA").range("AA2:AA" & lastRow).Value = daysTo
    ' erase and set to nothing all arrays and objects
    Erase Type
    Erase id
    Erase Price
    Set newPrice = Nothing
    Is there a possibility to clean everything in:
    Private Sub Workbook_BeforeClose(Cancel As Boolean)
    End Sub
    Thanks in advance
    Mark

  • Ai CS4 & CS5: Can't move objects, huge memory usage. Tips?

    Okay guys this is my first post here, so bear with me.
    I'm just wondering if anyone can give guidance or refer me somewhere I can find a solution. I both CS4 and CS5 of Ai installed on my mac. Everything works just great, until I attempt to move an object. Something simple as a single line with freeze my system if I attempt to move it from one location to another.
    It is odd. I can scale/transform objects without any issue. Its just when I click an object to drag it to another location my system will freeze for about 5 seconds. The object won't move still. I opened up Activity Monitor and noticed my Memory usage sky rocketed as soon as I tried to move the object.
    Is there configurations for memory allocation in Illustrator like there is in photshop?
    (PS I have 3GB RAM and a 120GB HDD with 30GB free space, 2.0 Intel Core 2 processor, it's a 2007 Mac Mini)

    How big is the file? and is it complex if so then you simply do not have the resources. Also you might have a font cache issue.
    But I think the lack of resources.

  • Premiere crashes when exceeding ~1.2GB memory usage

    This is extremely annoying. I have found Premiere to crash when it hits around 1.2GB to 1.5GB of memory usage on medialayer.dll or something. I was able to crash Premiere in just a matter of seconds after launching it and opening my project. I work quickly, so this happens frequently.
    Q9450 Yorkfield Quadcore (12MB Cache), clocked at 3.2GHz
    4GB of 1200 RAM
    All my scratch disks are set to my second partition, which has around or at least 200GB of free space. My page file is set to about 4GB. My machine is defragmented daily by Diskeeper Pro 2008.
    I am dealing with 26 video files and have frame thumbnails displaying in the timeline thing (it makes everything all the more easier for what I am specifically doing) and adds up to around a total of 9 to 10 hours of video and audio. I'm chopping out the intro, credits, and midtro from each video, which is basically what I am doing.
    However, I am currently downloading the latest update (which is like 50.3MB) that might possibly fix this issue. At least I hope it does. :( This crash/memory leak is going to drive me insane if it cannot be fixed.
    EDIT :: I have observed that every time I save, the memory usage goes up by 200KB to 500KB. For each frame thumbnail that Premiere loads, the memory usage goes up by a whopping 2MB+. This will and does quickly add up for the work I'm doing. Photoshop never unloads any of this memory!
    EDIT2 :: By the way, the frame thumbnails are 88x65 sized thumbnails.
    EDIT3 :: Even with the latest version and update, Premiere Pro CS3 still crashes for the same reason. I haven't seen the memory usage at 1GB though.
    EDIT4 :: Latest updates help though, but does not fix the problem. When I minimize Premiere, usage is 17 MB. When I bring it back up, usage is 32MB. I can keep resetting the usage to 17/32MB simply by just minimizing Premiere and bringing it back up again (and the memory usage reset is about instant). So far I've reset it numerous times when reaching levels of around 600MB to 800MB of memory usage and haven't crashed in my current session due to the memory leak yet.
    This seems to be only a temporary solution.
    http://www.hlrse.net/Qwerty/premiere-memoryleak-workspace.gif
    That is my current workspace. I literally keep task manager open with Premiere highlighted like that so that I can watch the memory usage levels (to know when to 'reset' the memory usage) as I work. Right now all I'm doing is zooming in and out, and splitting videos in two (or multiple pieces).

    Q9450 Yorkfield (12MB Cache) @ 3.2GHz
    2GB G.Skill PC2-6400 (400MHz) x2 (4GB total, running with 3.5GB due to 32-bit limitations)
    NVIDIA FX5200 (temporary, waiting for ATI HD4850 to come back from RMA)
    500GB Seagate Barracuda 7200.1 SATA-II w/ SATA-II enabled
    I have my 500GB harddrive partitioned into two partitions: 40GB (C) and 425GB (D). C is for Windows XP (includes drivers, codecs, and things that relate heavily to the core of Windows; stuff that isn't important enough to backup). D is for everything else, which includes games, utilities/tools, media (images, video, music), developer material, etc.
    On D, you would find the following logical layout of folders:
    Developer, Games, Media, Network, Utilities, Mozilla Firefox, Temp.
    Temp is so that I can (in an organized fashion) set the temporary locations and scratch disks for programs here. All scratch disks are set to D:\Temp\Premiere, and currently reports 121.9GB of free space. I can easily free up 114GB to 240GB of material on D though (which I plan to do sometime anyway).
    What information do you want to know? Be specific, I'm not stupid and illiterate like most people.
    EDIT :: I didn't mention this in my post, but I did take the precautions to search through the Troubleshooting database for Premiere, and I did read through the optimizations for Windows XP article (which I already had the same suggestions applied to my computer since the dawn of time -- so that wasn't really useful).
    EDIT2 :: I checked the troubleshooting link and none of those really apply. (Do you even know what a memory leak is?)
    =P

  • Having a problem with Excessive "modified" memory usage in Win7 x64, upwards of 3.6GB, any suggestions?

    I have 6GB of ram, a fresh install of Windows 7 x64, and the screenshot shows what happens after leaving my PC on for a couple days. (3782+MB being used by modified memory ATM).
    http://wow.deconstruct.me/images/ExcessiveMemory.jpg
    Any ideas on this?
    Edit:
    Added this after first round of suggestions
    http://wow.deconstruct.me/images/NotSoExcessiveMemory.jpg
    This is uptime of around 2 hours.
    The first image is of uptime of around 3-5 days.

    Matthew,
    The only reason why these pages are kept on the modified list indefinitely is because the system doesn't have any available pagefile space left. If you increase the size of the pagefile the system will write most of these pages to disk and then move them from the modified list to the standby list. Standby pages are considered part of "available memory", because they can be reused for some other purpose if necessary.
    Whether this would "fix" the problem or not depends on what the actual problem is. If it's an unbound memory leak then increasing the size of the pagefile will simply allow the system to run longer before it eventually hits the maximum pagefile size limit, or runs out of disk space. On the other hand, if it's a case of some application allocating a lot of memory and not using it for a long time, then increasing the pagefile might be a perfectly valid solution.
    Allowing the system to manage the size of the pagefile actually works well in most cases. Pagefile fragmentation (at the filesystem level) can only occur when the initially chosen size is not large enough and the system has to extend it at run time. For win7 we have telemetry data that shows that even for systems with 1 GB of RAM, less than 0.1% of all boot sessions end up having to extend the pagefile, and this number is even lower for larger amounts of RAM. If you think you are in that 0.1% and your pagefile might be getting fragmented, you can manually increase its minimum size such that the total system commit charge stays below 80% even if you run all your apps at once (80% is the threshold at which the pagefile is automatically extended). This will make sure the pagefile is created once and then stays at the same size forever, so it can't fragment. The maximum size can either be set to the same value as the minimum, or you can make it larger so that the system is more resilient to memory leaks or unexpectedly high loads.
    By the way, Windows doesn't use pagefiles as "extra memory", it uses them as a backing store for private pages, just like regular files are used as a backing store for EXEs/DLLs and memory mapped files. So if the system really has more than enough RAM (like in your second screenshot, where you have 3.6 GB of free pages) you shouldn't see any reads from the pagefile. You can verify this by going to the Disk tab in the resource monitor and looking for any disk IO from pagefile.sys. On smaller systems that don't have an excess of free pages you may see periodic reads from the pagefile, and this is expected because the total amount of data referenced by the OS/drivers/processes is larger than the total RAM. Forcefully keeping all pagefile-backed pages in memory (which is what disabling the pagefile does) would simply mean some other pages (memory mapped files, DLL code or data etc) would have to be paged out.
    Regarding further troubleshooting steps: If the system runs fine with a larger pagefile (commit charge stabilizes well below 80%, and you no longer see gigabytes of modified pages accumulating in memory) then you don't really need to do anything. If the problem persists, you can check for any processes with an abnormally high commit charge, and also check kernel memory usage in task manager. If it's a kernel leak you can usually narrow it down to a particular driver using poolmon.exe or kernel debugger.

  • Norton reports high memory usage with firefox and it crashes often

    Norton antivirus 2011 has pop up warnings reporting high memory usage from Firefox. I have been getting theem often and my computer is crashing often after those pop up warnings. Thanks

    Safe mode did not help.
    I have disabled ALL extensions and plug-ins, but the problem with "zig-zag" memory usage still remains (I've not tried to leave browser open for the night yet).
    I think I'll do clean reinstall with completely new empty profile (without sync'ed information) to try this out. If this works, I'll start adding stuff (configuration, sync, features, etc) to see what causes the problem.

  • Memory problems: computer freezes on heavy memory usage

    Ever since I changed the internal hard drive of my MacBook Pro (I installed a Seagate Barracuda 1Tb disk), I have the following problem:
    Whenever an application needs a lot of memory (for example Parallels installing a new Windows system, or Acrobat Pro optimizing a big PDF file), the computer progressively freezes. What I mean by freezing is that I can still move the mouse cursor, but clicking has no effect, and there is no interaction whatsoever with the GUI. Even the clock on the menu bar stops.
    I never had the problem before. I guess that under normal conditions the Finder will always keep a few Mb of RAM for its own use. After all I have 4Gb of RAM installed.
    Is there some way I can prevent the computer from freezing? Has this something to do with VM? Ever since I changed the hard disk, this problem happens once or twice every day, and the only solution is to force a restart, losing all my work…
    Thanks in advance for any advice…

    First, do not assign more than half your available RAM to a VM. It's best to let the VM software's configuration to select the amount used by its defaults.
    Second, watch how many concurrent applications you attempt to use. Monitor your memory usage in Activity Monitor. If the Available RAM (Inactive RAM plus Free RAM) is low and Free RAM is near zero, then you have too many concurrent applications running. This forces the system to start using the disk-based virtual memory file. With too many apps swapping into the vm file disk thrashing will occur that ultimately can lead to the computer appearing to freeze up or to actually freeze up.
    Of course your alternative is to install more RAM if in fact you are over-taxing what you have now. You may find the following helpful reading:
    About OS X Memory Management and Usage
    Reading system memory usage in Activity Monitor
    Memory Management in Mac OS X
    Performance Guidelines- Memory Management in Mac OS X
    A detailed look at memory usage in OS X
    Understanding top output in the Terminal
    The amount of available RAM for applications is the sum of Free RAM and Inactive RAM. This will change as applications are opened and closed or change from active to inactive status. The Swap figure represents an estimate of the total amount of swap space required for VM if used, but does not necessarily indicate the actual size of the existing swap file. If you are really in need of more RAM that would be indicated by how frequently the system uses VM. If you open the Terminal and run the top command at the prompt you will find information reported on Pageins () and Pageouts (). Pageouts () is the important figure. If the value in the parentheses is 0 (zero) then OS X is not making instantaneous use of VM which means you have adequate physical RAM for the system with the applications you have loaded. If the figure in parentheses is running positive and your hard drive is constantly being used (thrashing) then you need more physical RAM.

  • Firefox keeps freezing and using 50% cpu and memory usage shoots up most of the time it's when there's an auto update of anything addon, plugin or ff!

    Firefox keeps freezing and using 50% cpu and memory usage shoots up real fast and carries on going till it uses up all there is left. Most of the time it's when there's an auto update of anything addon, plugin or ff but not just neccessarily then! I find out it's happened when there's been an update after i restart and an extra webpage comes up with the particular addon/plugin/ff update. I have to restart most of time because nothing sorts it out. I'm using windows xp with the latest update of ff 13.0.1 it's not this version because it's been happening for a while. And it never started when i added a particular addon or plugin or when i added a new app to my pc either. Any idea as to what this may be or how i'd sort it out?
    Cheers

    Maybe disable hardware acceleration? This article should help: https://support.mozilla.org/en-US/kb/firefox-uses-too-much-memory-ram

  • Indesign CC freezes and maxes out memory usage in Windows 7

    I'm having a problem where Indesign will freeze and when I check on it in Task Manager I can see the memory usage climbing until it's using all free memory. I have to kill the task to get it to stop. I have 8GB and it maxed out at 6.5gb this morning. I'm on Windows 7 Pro and am using the 64-bit version of Indesign with the most recent update.

    The document I'm working on now is only about 35 pages with 1-3 images per page, nothing too crazy. I don't have any extra plugins from what I recall - how do I check?
    I'm using Photoshop and sometimes Illustrator at the same time, but have plenty of free memory until ID goes nuts.

  • Frequent crashes - using 900,00k + memory, many tabs open - is memory usage an issue?

    I am having frequent crashing of firefox, several times a day.
    I do have many tabs open, 100+, and memory usage is around 900,000 and up.
    I am wondering if the memory usage is causing the crashing, or something else I can fix?
    My task manager says I am using 67% of available memory.
    Total: 2941
    Cached:1202
    Free: 74
    Total: 207
    Paged: 153
    NonPaged: 53
    Page File 2981M / 6116M
    Here are the id's of the last 10 crash reports:
    bp-c79bc97e-d502-4319-a49e-7bc0b2130917 9/16/201311:38 PM
    bp-19f60b05-f268-4693-b622-066f42130917 9/16/20139:59 PM
    bp-f43d9597-9023-487a-90d4-994d32130916 9/16/20137:15 PM
    bp-b552cdc4-6920-4eed-bff7-cb7cf2130916 9/16/20136:04 PM
    bp-b62272cb-f4ef-4f30-acc9-4a1752130916 9/16/20135:02PM
    bp-f4bebdd3-20f9-4444-8245-520c42130916 9/16/20133:08 PM
    bp-bad99992-5b2b-4ac1-96bc-e03812130915 9/14/201311:31 PM
    962c451e-dc19-4707-9def-b2dd5cd4caed 9/14/201310:07 PM
    bp-8de4bc69-0f86-417a-9727-e88622130914 9/14/20132:29 AM
    bp-6ae9815f-1472-492d-8738-1cd842130914 9/14/20131:01 AM

    These crash reports can be hard to interpret, but at least the six from 9/16 seem to be "out of memory" (OOM) errors. Assuming that is the case, the question is what might be done about that.
    This support article has a range of suggestions, including not having more than 100 tabs open and possibly useful add-ons. [[Firefox uses too much memory (RAM) - How to fix]]. In a bug report, I also saw an extension that displays the usage on the add-on bar, which might help in keeping an eye on it.
    I noticed you have several dom.ipc.plugins.* preferences set to False, which may force some plugins to run in firefox.exe rather than plugin-container.exe. The design of the process isolation feature is that plugin crashes will take down plugin-container.exe rather than firefox.exe. It may also be that overriding process isolation is ballooning the memory usage by firefox.exe rather than more evenly distributing it between the two processes. You may want to restore those settings to their defaults and see whether that helps.
    Finally, to reduce the size of your sessionrestore.js file you could omit personal data (e.g., cookies, form data), but this will make it a bit harder after a crash to get back to where you were.

  • Occasional video freeze, related to memory usage?

    Hi all,
    I've been experiencing problems playing divx and flv (firefox) videos.
    The image freezes for a second, then keeps playing, then freezes... again and again.
    I have the same problem with VLC, MPlayer OS X, I have tried uninstalling Perian, or Flip4mac...
    Computer updates are ok.
    It looks like a memory usage issue to me but I am not sure.
    Any idea?

    Welcome to Apple Discussions!
    One thing you could try is to go to System Preferences>QuickTime>Streaming and set the bar for a longer delay. I get this a lot with dial up, and I think it's because the download speed is slow. It downloads a little, plays a little, downloads a bit more, plays a bit more...and so on. With really fast internet, I think it downloads faster than it plays, so you don't get this.
    Good luck!

  • Is my memory bad?  Screen Freezes - Crashes

    Hello, I have a macbook early 2008 or so...  I bought it with 2GB, last year I bought 2 2GB memories from MacRam to upgrade my macbook and i am having issues with the memory, I think.  I think was able to isolate the one that gives me issues, and I am not an expert.  I ran AHT and REMBER and in both the memory appears good.
    Does anyone know what could be causing this?  When i send the ram back to MacRam, they will test the memory and most likely the memory will be returned back because the memory will pass the test too.
    Any ideas of what could case this freeze/crash?  Would this be a result of static?
    The following screen freezes are happening:
    and

    If you take out the MacRam memory, and put back in the original memory, do you still have the problem? That would help isolate cause and effect.
    When you ran the AHT did you run the extended test?

  • Programmatically profile memory usage on multiple VIs

    I need to programmatically profile the memory usage (daily) on a set of designated VIs and record the results for future comparison.  How can I configure the profiler to start, then run a sub VI, and then stop the profiler?  Also, how can I save the results into a spreadsheet?

    Thanks for the reply Stephanie.  What I need to do, however, is programmatically set up the Memory Profiler (Tools>>Profile>>Performance and Memory and then select the "Profile memory usage" checkbox and then select the "Memory usage" checkbox), start it, programmatically run my selection of sub VIs, and then stop the profiler, and then save the data to a specific location.  All of this has to happen without input from a user.  It will run automatically at pre-determined intervals.
    Understanding how to programmatically set up and run the profiler is where I need help.  I couldn't find any functions that dealt with the memory profiler.

  • RMBP freezing / crashing (not chrome related)

    Hi, about 3 weeks ago my rMBP started to freeze randomly and i couldn't find anywhere on the internet nothing related to that, only the chrome / mountain lion conflicts, but... i'm not using google chrome, so why's that? This last freeze I got the log from the moments between the freeze, i'm hoping anyone here could help me with this by looking at the reports. thanks!
    Mar 18 10:43:41 localhost bootlog[0]: BOOT_TIME 1363614221 0
    Mar 18 10:43:44 localhost kernel[0]: PMAP: PCID enabled
    Mar 18 10:43:44 localhost kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    Mar 18 10:43:44 localhost kernel[0]: Darwin Kernel Version 12.2.1: Thu Oct 18 16:32:48 PDT 2012; root:xnu-2050.20.9~2/RELEASE_X86_64
    Mar 18 10:43:44 localhost kernel[0]: vm_page_bootstrap: 4009958 free pages and 151578 wired pages
    Mar 18 10:43:44 localhost kernel[0]: kext submap [0xffffff7f80735000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000735000]
    Mar 18 10:43:44 localhost kernel[0]: zone leak detection enabled
    Mar 18 10:43:44 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Mar 18 10:43:44 localhost kernel[0]: standard background quantum is 2500 us
    Mar 18 10:43:44 localhost kernel[0]: mig_table_max_displ = 74
    Mar 18 10:43:44 localhost kernel[0]: TSC Deadline Timer supported and enabled
    Mar 18 10:43:44 localhost kernel[0]: corecrypto kext started!
    Mar 18 10:43:44 localhost kernel[0]: Running kernel space in FIPS MODE
    Mar 18 10:43:44 localhost kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    Mar 18 10:43:44 localhost kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    Mar 18 10:43:44 localhost kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    Mar 18 10:43:44 localhost kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    Mar 18 10:43:44 localhost kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    Mar 18 10:43:44 localhost kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    Mar 18 10:43:44 localhost kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    Mar 18 10:43:44 localhost kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    Mar 18 10:43:44 localhost kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    Mar 18 10:43:44 localhost kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    Mar 18 10:43:43 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Mar 18 10:43:44 localhost kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    Mar 18 10:43:44 localhost kernel[0]: corecrypto.kext FIPS POST passed!
    Mar 18 10:43:44 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    Mar 18 10:43:44 localhost kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    Mar 18 10:43:44 localhost kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    Mar 18 10:43:44 localhost kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    Mar 18 10:43:44 localhost kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    Mar 18 10:43:44 localhost kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    Mar 18 10:43:44 localhost kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    Mar 18 10:43:44 localhost kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    Mar 18 10:43:44 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Mar 18 10:43:44 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Mar 18 10:43:44 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Mar 18 10:43:44 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Mar 18 10:43:44 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Mar 18 10:43:44 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Mar 18 10:43:44 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Mar 18 10:43:44 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Mar 18 10:43:44 localhost kernel[0]: MAC Framework successfully initialized
    Mar 18 10:43:44 localhost kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    Mar 18 10:43:44 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Mar 18 10:43:44 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5]
    Mar 18 10:43:44 localhost kernel[0]: PFM64 (36 cpu) 0xf80000000, 0x80000000
    Mar 18 10:43:44 localhost kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 889A
    Mar 18 10:43:44 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 23:03:24 Jun 24 2012) initialization complete
    Mar 18 10:43:44 localhost kernel[0]: [ PCI configuration begin ]
    Mar 18 10:43:44 localhost kernel[0]: console relocated to 0xfd0020000
    Mar 18 10:43:44 localhost kernel[0]: PCI configuration changed (bridge=17 device=5 cardbus=0)
    Mar 18 10:43:44 localhost kernel[0]: [ PCI configuration end, bridges 12 devices 16 ]
    Mar 18 10:43:44 localhost kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    Mar 18 10:43:44 localhost kernel[0]: AppleThunderboltNHIType2::start - type 2 sleep enabled
    Mar 18 10:43:44 localhost kernel[0]: AppleThunderboltNHIType2::start - SXFP method found
    Mar 18 10:43:44 localhost kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    Mar 18 10:43:44 localhost kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    Mar 18 10:43:44 localhost kernel[0]: rooting via boot-uuid from /chosen: E129C0A6-D3C5-3302-9FE1-8BEDDD7EA9E1
    Mar 18 10:43:44 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Mar 18 10:43:44 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Mar 18 10:43:44 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    Mar 18 10:43:44 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Mar 18 10:43:44 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    Mar 18 10:43:44 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Mar 18 10:43:44 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE SSD SM256E Media/IOGUIDPartitionScheme/Macintosh HD@2
    Mar 18 10:43:44 localhost kernel[0]: BSD root: disk0s2, major 1, minor 2
    Mar 18 10:43:44 localhost kernel[0]: jnl: unknown-dev: replay_journal: from: 14574080 to: 18080256 (joffset 0x74e000)
    Mar 18 10:43:44 localhost kernel[0]: BTCOEXIST off
    Mar 18 10:43:44 localhost kernel[0]: BRCM tunables:
    Mar 18 10:43:44 localhost kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    Mar 18 10:43:44 localhost kernel[0]: IOThunderboltSwitch(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    Mar 18 10:43:44 localhost kernel[0]: IOThunderboltSwitch(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    Mar 18 10:43:44 localhost kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    Mar 18 10:43:43 localhost com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    Mar 18 10:43:44 localhost com.apple.launchd[1] (com.apple.automountd): Unknown key for boolean: NSSupportsSuddenTermination
    Mar 18 10:43:44 localhost kernel[0]: jnl: unknown-dev: journal replay done.
    Mar 18 10:43:44 localhost kernel[0]: Kernel is LP64
    Mar 18 10:43:44 localhost kernel[0]: hfs: Removed 24 orphaned / unlinked files and 176 directories
    Mar 18 10:43:44 localhost distnoted[20]: # distnote server daemon  absolute time: 4.123846863   civil time: Mon Mar 18 10:43:44 2013   pid: 20 uid: 0  root: yes
    Mar 18 10:43:45 localhost kernel[0]: AirPort_Brcm4331: Ethernet address 20:c9:d0:43:48:f3
    Mar 18 10:43:45 localhost kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    Mar 18 10:43:45 localhost kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    Mar 18 10:43:45 localhost airportd[25]: _processDLILEvent: en0 attached (down)
    Mar 18 10:43:45 localhost kernel[0]: createVirtIf(): ifRole = 1
    Mar 18 10:43:45 localhost kernel[0]: in func createVirtualInterface ifRole = 1
    Mar 18 10:43:45 localhost kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff802b9c8000
    Mar 18 10:43:45 localhost kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    Mar 18 10:43:45 localhost kernel[0]: Created virtif 0xffffff802b9c8000 p2p0
    Mar 18 10:43:45 localhost com.apple.SecurityServer[15]: Session 100000 created
    Mar 18 10:43:45 localhost kernel[0]: AirPort: Link Down on en0. Reason 1 (Unspecified).
    Mar 18 10:43:45 localhost kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Mar 18 10:43:45 localhost configd[17]: network changed.
    Mar 18 10:43:45 Alexs-MacBook-Pro.local configd[17]: setting hostname to "Alexs-MacBook-Pro.local"
    Mar 18 10:43:45 Alexs-MacBook-Pro.local com.apple.SecurityServer[15]: Entering service
    Mar 18 10:43:46 Alexs-MacBook-Pro kernel[0]: NVDAStartup: Official
    Mar 18 10:43:46 Alexs-MacBook-Pro kernel[0]: Previous Shutdown Cause: 3
    Mar 18 10:43:46 Alexs-MacBook-Pro kernel[0]: NVDAGK100HAL loaded and registered
    Mar 18 10:43:46 Alexs-MacBook-Pro kernel[0]: AGC: 3.2.13, HW version=3.2.19 [3.2.8], flags:0, features:20600
    Mar 18 10:43:46 Alexs-MacBook-Pro kernel[0]: IOBluetoothUSBDFU::probe
    Mar 18 10:43:46 Alexs-MacBook-Pro kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8286 FirmwareVersion - 0x0100
    Mar 18 10:43:46 Alexs-MacBook-Pro kernel[0]: [BroadcomBluetoothHCIControllerUSBTransport][start] -- completed
    Mar 18 10:43:46 Alexs-MacBook-Pro kernel[0]: APExtframeBuffer starting: max resolution 1920x1080
    Mar 18 10:43:46 Alexs-MacBook-Pro kernel[0]: Initializing Framebuffer.
    Mar 18 10:43:46 Alexs-MacBook-Pro kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification
    Mar 18 10:43:46 Alexs-MacBook-Pro kernel[0]: [IOBluetoothHCIController][start] -- completed
    Mar 18 10:43:46 Alexs-MacBook-Pro.local UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    Mar 18 10:43:46 Alexs-MacBook-Pro.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client '/usr/libexec/UserEventAgent' [11] for authorization created by '/usr/libexec/UserEventAgent' [11] (100012,0)
    Mar 18 10:43:46 Alexs-MacBook-Pro kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    Mar 18 10:43:46 Alexs-MacBook-Pro kernel[0]: DSMOS has arrived
    Mar 18 10:43:46 Alexs-MacBook-Pro.local fseventsd[34]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (230699 5 230758)
    Mar 18 10:43:46 Alexs-MacBook-Pro.local fseventsd[34]: log dir: /.fseventsd getting new uuid: D644D53E-F477-44F0-8CFF-B7C9F83BB5D7
    Mar 18 10:43:46 Alexs-MacBook-Pro.local hidd[58]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Mar 18 10:43:46 Alexs-MacBook-Pro.local revisiond[44]: Had metainfo
    Mar 18 10:43:46 Alexs-MacBook-Pro.local revisiond[44]: UUIDs match!
    Mar 18 10:43:46 Alexs-MacBook-Pro.local appleeventsd[63]: main: Starting up
    Mar 18 10:43:46 Alexs-MacBook-Pro.local mDNSResponder[51]: mDNSResponder mDNSResponder-379.34 (Aug 28 2012 18:13:50) starting OSXVers 12
    Mar 18 10:43:46 Alexs-MacBook-Pro.local com.apple.usbmuxd[38]: usbmuxd-296.4 on Dec 21 2012 at 16:11:14, running 64 bit
    Mar 18 10:43:46 Alexs-MacBook-Pro.local coreservicesd[27]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    Mar 18 10:43:46 Alexs-MacBook-Pro.local mds[50]: (Normal) FMW: FMW 0 0
    Mar 18 10:43:46 Alexs-MacBook-Pro.local awacsd[67]: Starting awacsd connectivity-78 (Jul 26 2012 14:37:46)
    Mar 18 10:43:46 Alexs-MacBook-Pro.local apsd[69]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Mar 18 10:43:46 Alexs-MacBook-Pro.local awacsd[67]: InnerStore CopyAllZones: no info in Dynamic Store
    Mar 18 10:43:46 Alexs-MacBook-Pro.local apsd[69]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Mar 18 10:43:46 Alexs-MacBook-Pro.local loginwindow[54]: Login Window Application Started
    Mar 18 10:43:46 Alexs-MacBook-Pro.local netbiosd[49]: Unable to start NetBIOS name service:
    Mar 18 10:43:46 Alexs-MacBook-Pro.local WindowServer[77]: Server is starting up
    Mar 18 10:43:46 Alexs-MacBook-Pro.local WindowServer[77]: Session 256 retained (2 references)
    Mar 18 10:43:46 Alexs-MacBook-Pro.local WindowServer[77]: Session 256 released (1 references)
    Mar 18 10:43:46 Alexs-MacBook-Pro.local systemkeychain[75]: done file: /var/run/systemkeychaincheck.done
    Mar 18 10:43:46 Alexs-MacBook-Pro.local WindowServer[77]: Session 256 retained (2 references)
    Mar 18 10:43:46 Alexs-MacBook-Pro.local WindowServer[77]: init_page_flip: page flip mode is on
    Mar 18 10:43:46 Alexs-MacBook-Pro kernel[0]: macx_swapon SUCCESS
    Mar 18 10:43:46 Alexs-MacBook-Pro.local configd[17]: network changed: DNS*
    Mar 18 10:43:46 Alexs-MacBook-Pro.local aosnotifyd[93]: aosnotifyd has been launched
    Mar 18 10:43:46 Alexs-MacBook-Pro.local aosnotifyd[93]: bootstrap_look_up failed (44e)
    Mar 18 10:43:46 Alexs-MacBook-Pro.local mDNSResponder[51]: D2D_IPC: Loaded
    Mar 18 10:43:46 Alexs-MacBook-Pro.local mDNSResponder[51]: D2DInitialize succeeded
    Mar 18 10:43:46 Alexs-MacBook-Pro.local locationd[55]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    Mar 18 10:43:46 Alexs-MacBook-Pro.local locationd[55]: NOTICE,Location icon should now be in state 0
    Mar 18 10:43:46 Alexs-MacBook-Pro.local locationd[55]: locationd was started after an unclean shutdown
    Mar 18 10:43:46 Alexs-MacBook-Pro.local apsd[69]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Mar 18 10:43:47 Alexs-MacBook-Pro.local fseventsd[34]: Logging disabled completely for device:1: /Volumes/Recovery HD
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: mux_initialize: Mode is dynamic
    Mar 18 10:43:47 Alexs-MacBook-Pro kernel[0]: en0: 802.11d country code set to 'BR'.
    Mar 18 10:43:47 Alexs-MacBook-Pro kernel[0]: en0: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Mar 18 10:43:47 Alexs-MacBook-Pro kernel[0]: APExternalDisplay Memory Reserved: 8331264 bytes
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: GLCompositor enabled for tile size [256 x 256]
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: CGXGLInitMipMap: mip map mode is on
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: WSMachineUsesNewStyleMirroring: true
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: Display 0x04280380: GL mask 0x11; bounds (0, 0)[1440 x 900], 54 modes available
              Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a00e, S/N 0, Unit 0, Rotation 0
              UUID 0x000006100000a00e0000000004280380
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: Display 0x003f0041: GL mask 0x20; bounds (0, 0)[0 x 0], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 5, Rotation 0
              UUID 0xffffffffffffffffffffffff003f0041
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
              UUID 0xffffffffffffffffffffffff003f003f
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
              UUID 0xffffffffffffffffffffffff003f003e
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
              UUID 0xffffffffffffffffffffffff003f003d
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: Created shield window 0x5 for display 0x04280380
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: Created shield window 0x6 for display 0x003f0041
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: Created shield window 0x7 for display 0x003f003f
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: Created shield window 0x8 for display 0x003f003e
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: Created shield window 0x9 for display 0x003f003d
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: Display 0x04280380: GL mask 0x11; bounds (0, 0)[1440 x 900], 54 modes available
              Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a00e, S/N 0, Unit 0, Rotation 0
              UUID 0x000006100000a00e0000000004280380
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: Display 0x003f0041: GL mask 0x20; bounds (2464, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 5, Rotation 0
              UUID 0xffffffffffffffffffffffff003f0041
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: Display 0x003f003f: GL mask 0x8; bounds (2465, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
              UUID 0xffffffffffffffffffffffff003f003f
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: Display 0x003f003e: GL mask 0x4; bounds (2466, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
              UUID 0xffffffffffffffffffffffff003f003e
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: Display 0x003f003d: GL mask 0x2; bounds (2467, 0)[1 x 1], 1 modes available
              off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
              UUID 0xffffffffffffffffffffffff003f003d
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: CGXPerformInitialDisplayConfiguration
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]:   Display 0x04280380: MappedDisplay Unit 0; Alias(0, 0x11); Vendor 0x610 Model 0xa00e S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 2
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]:   Display 0x003f0041: MappedDisplay Unit 5; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]:   Display 0x003f003f: MappedDisplay Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2466,0)[1 x 1], Rotation 0, Resolution 1
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2467,0)[1 x 1], Rotation 0, Resolution 1
    Mar 18 10:43:47 Alexs-MacBook-Pro.local WindowServer[77]: CGXMuxBoot: Boot normal
    Mar 18 10:43:48 Alexs-MacBook-Pro.local WindowServer[77]: GLCompositor: GL renderer id 0x01022647, GL mask 0x0000000f, accelerator 0x00004dcb, unit 0, caps QEX|QGL|MIPMAP, vram 1024 MB
    Mar 18 10:43:48 Alexs-MacBook-Pro.local WindowServer[77]: GLCompositor: GL renderer id 0x01022647, GL mask 0x0000000f, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar 18 10:43:48 Alexs-MacBook-Pro.local WindowServer[77]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000010, accelerator 0x0000532b, unit 4, caps QEX|QGL|MIPMAP, vram 580 MB
    Mar 18 10:43:48 Alexs-MacBook-Pro.local WindowServer[77]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000010, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar 18 10:43:48 Alexs-MacBook-Pro.local loginwindow[54]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Mar 18 10:43:48 Alexs-MacBook-Pro.local hidd[58]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    Mar 18 10:43:48 Alexs-MacBook-Pro.local WindowServer[77]: Unable to open IOHIDSystem (e00002bd)
    Mar 18 10:43:48 Alexs-MacBook-Pro.local WindowServer[77]: Created shield window 0xa for display 0x04280380
    Mar 18 10:43:48 Alexs-MacBook-Pro.local WindowServer[77]: Display 0x04280380: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Mar 18 10:43:48 Alexs-MacBook-Pro.local launchctl[130]: com.apple.findmymacmessenger: Already loaded
    Mar 18 10:43:48 Alexs-MacBook-Pro.local com.apple.SecurityServer[15]: Session 100004 created
    Mar 18 10:43:48 Alexs-MacBook-Pro.local hidd[58]: CGSShutdownServerConnections: Detaching application from window server
    Mar 18 10:43:48 Alexs-MacBook-Pro.local hidd[58]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    Mar 18 10:43:48 Alexs-MacBook-Pro.local loginwindow[54]: Login Window Started Security Agent
    Mar 18 10:43:48 Alexs-MacBook-Pro.local SecurityAgent[141]: This is the first run
    Mar 18 10:43:48 Alexs-MacBook-Pro.local SecurityAgent[141]: MacBuddy was run = 0
    Mar 18 10:43:48 Alexs-MacBook-Pro.local WindowServer[77]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280380 device: 0x101680320  isBackBuffered: 1 numComp: 3 numDisp: 3
    Mar 18 10:43:48 Alexs-MacBook-Pro.local SecurityAgent[141]: User info context values set for alexs
    Mar 18 10:43:48 Alexs-MacBook-Pro kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_authenticate(): Got user: alexs
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_authenticate(): Got ruser: (null)
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_authenticate(): Got service: authorization
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in od_principal_for_user(): No authentication authority returned
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in od_principal_for_user(): failed: 7
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_authenticate(): Failed to determine Kerberos principal name.
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_authenticate(): Done cleanup3
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_authenticate(): Kerberos 5 refuses you
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_authenticate(): pam_sm_authenticate: ntlm
    Mar 18 10:43:48 Alexs-MacBook-Pro.local coreaudiod[139]: 2013-03-18 10:43:48.489540 AM [AirPlay] Started browsing for _airplay._tcp.
    Mar 18 10:43:48 Alexs-MacBook-Pro.local coreaudiod[139]: 2013-03-18 10:43:48.490084 AM [AirPlay] Started browsing for _raop._tcp.
    Mar 18 10:43:48 Alexs-MacBook-Pro.local TabletDriver[137]: Finish launching /Library/Application Support/Tablet/PenTabletDriver.app/Contents/Resources/ConsumerTouchDriver.app
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_acct_mgmt(): OpenDirectory - Membership cache TTL set to 1800.
    Mar 18 10:43:48 Alexs-MacBook-Pro.local TabletDriver[136]: Finish launching /Library/Application Support/Tablet/WacomTabletDriver.app/Contents/Resources/WacomTouchDriver.app
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in od_record_check_pwpolicy(): retval: 0
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in od_record_attribute_create_cfstring(): returned 2 attributes for dsAttrTypeStandard:AuthenticationAuthority
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_setcred(): Establishing credentials
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_setcred(): Got user: alexs
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_setcred(): Context initialised
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_setcred(): Got euid, egid: 0 0
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_setcred(): Done getpwnam()
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_setcred(): Done setegid() & seteuid()
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_setcred(): pam_sm_setcred: krb5 user alexs doesn't have a principal
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_setcred(): Done cleanup3
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_setcred(): Done seteuid() & setegid()
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_setcred(): Done cleanup4
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_setcred(): pam_sm_setcred: ntlm
    Mar 18 10:43:48 Alexs-MacBook-Pro.local authorizationhost[145]: in pam_sm_setcred(): pam_sm_setcred: no domain found skipping
    Mar 18 10:43:48 Alexs-MacBook-Pro.local TabletDriver[136]: Finish launching /Library/Application Support/Tablet/WacomTabletDriver.app/Contents/Resources/TabletDriver.app
    Mar 18 10:43:48 Alexs-MacBook-Pro.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.login.console' by client '/System/Library/CoreServices/loginwindow.app' [54] for authorization created by '/System/Library/CoreServices/loginwindow.app' [54] (100003,0)
    Mar 18 10:43:48 Alexs-MacBook-Pro.local loginwindow[54]: Login Window - Returned from Security Agent
    Mar 18 10:43:48 Alexs-MacBook-Pro.local loginwindow[54]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    Mar 18 10:43:48 Alexs-MacBook-Pro.local loginwindow[54]: USER_PROCESS: 54 console
    Mar 18 10:43:48 Alexs-MacBook-Pro.local coreservicesd[27]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=106
    Mar 18 10:43:48 Alexs-MacBook-Pro com.apple.launchd[1] (com.wacom.pentablet[137]): Exited with code: 255
    Mar 18 10:43:48 Alexs-MacBook-Pro.local coreservicesd[27]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=108
    Mar 18 10:43:48 Alexs-MacBook-Pro com.apple.launchd[1] (com.wacom.wacomtablet[136]): Exited with code: 255
    Mar 18 10:43:48 Alexs-MacBook-Pro com.apple.launchd[1] ([0x0-0x7007].com.wacom.Wacom_TouchDriver[147]): Exited with code: 255
    Mar 18 10:43:48 Alexs-MacBook-Pro com.apple.launchd[1] ([0x0-0x6006].com.wacom.Consumer_TouchDriver[146]): Exited with code: 255
    Mar 18 10:43:48 Alexs-MacBook-Pro com.apple.launchd.peruser.501[150] (com.spotify.webhelper): Unknown key: SpotifyPath
    Mar 18 10:43:48 Alexs-MacBook-Pro com.apple.launchd.peruser.501[150] (com.apple.gamed): Ignored this key: UserName
    Mar 18 10:43:48 Alexs-MacBook-Pro com.apple.launchd.peruser.501[150] (com.apple.gamed): Ignored this key: GroupName
    Mar 18 10:43:48 Alexs-MacBook-Pro com.apple.launchd.peruser.501[150] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Mar 18 10:43:48 Alexs-MacBook-Pro.local loginwindow[54]: Connection with distnoted server was invalidated
    Mar 18 10:43:48 Alexs-MacBook-Pro.local distnoted[154]: # distnote server agent  absolute time: 8.290351584   civil time: Mon Mar 18 10:43:48 2013   pid: 154 uid: 501  root: no
    Mar 18 10:43:48 Alexs-MacBook-Pro.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.login.done' by client '/System/Library/CoreServices/loginwindow.app' [54] for authorization created by '/System/Library/CoreServices/loginwindow.app' [54] (100002,0)
    Mar 18 10:43:48 Alexs-MacBook-Pro.local WindowServer[77]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Mar 18 10:43:48 Alexs-MacBook-Pro.local WindowServer[77]: Display 0x04280380: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Mar 18 10:43:48 Alexs-MacBook-Pro.local com.apple.SecurityServer[15]: Session 100005 created
    Mar 18 10:43:48 Alexs-MacBook-Pro.local Little Snitch Agent[167]: Little Snitch Agent version 3883 started.
    Mar 18 10:43:49 Alexs-MacBook-Pro.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.services.systemconfiguration.network' by client '/usr/libexec/UserEventAgent' [153] for authorization created by '/usr/libexec/UserEventAgent' [153] (100000,0)
    Mar 18 10:43:49 Alexs-MacBook-Pro.local UserEventAgent[153]: cannot find fw daemon port 1102
    Mar 18 10:43:49 Alexs-MacBook-Pro kernel[0]: MacAuthEvent en0   Auth result for: 20:c9:d0:1e:c4:e0  MAC AUTH succeeded
    Mar 18 10:43:49 Alexs-MacBook-Pro kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    Mar 18 10:43:49 Alexs-MacBook-Pro kernel[0]: AirPort: Link Up on en0
    Mar 18 10:43:49 Alexs-MacBook-Pro kernel[0]: en0: BSSID changed to 20:c9:d0:1e:c4:e0
    Mar 18 10:43:49 Alexs-MacBook-Pro kernel[0]: en0::IO80211Interface::postMessage bssid changed
    Mar 18 10:43:49 Alexs-MacBook-Pro kernel[0]: AirPort: RSN handshake complete on en0
    Mar 18 10:43:49 Alexs-MacBook-Pro.local mds[50]: (/)(Warning) IndexQuery in bool preIterate_FSI(SISearchCtx_FSI *):Throttling inefficient file system query
    Mar 18 10:43:49 Alexs-MacBook-Pro.local airportd[25]: _doAutoJoin: Already associated to “Benjamin Network”. Bailing on auto-join.
    Mar 18 10:43:49 --- last message repeated 3 times ---
    Mar 18 10:43:49 Alexs-MacBook-Pro.local mds[50]: (/)(Warning) IndexQuery in virtual bool SISearchCtx_FSI::performSearch(struct PartialQueryResults *):Retried searchfs 4 times
    Mar 18 10:43:49 Alexs-MacBook-Pro.local WindowServer[77]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Mar 18 10:43:50 Alexs-MacBook-Pro.local WindowServer[77]: Display 0x04280380: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Mar 18 10:43:51 --- last message repeated 1 time ---
    Mar 18 10:43:51 Alexs-MacBook-Pro.local configd[17]: network changed: v4(en0+:10.0.1.4) DNS+ Proxy+ SMB
    Mar 18 10:43:51 Alexs-MacBook-Pro.local UserEventAgent[11]: Captive: en0: Not probing 'Benjamin Network' (protected network)
    Mar 18 10:43:51 Alexs-MacBook-Pro.local configd[17]: network changed: v4(en0!:10.0.1.4) DNS Proxy SMB
    Mar 18 10:43:53 Alexs-MacBook-Pro.local WindowServer[77]: Received display connect changed for display 0x4280380
    Mar 18 10:43:53 Alexs-MacBook-Pro.local WindowServer[77]: CGXMuxAcknowledge: Posting glitchless acknowledge
    Mar 18 10:43:53 Alexs-MacBook-Pro.local WindowServer[77]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280380 device: 0x101680320  isBackBuffered: 1 numComp: 3 numDisp: 3
    Mar 18 10:43:53 Alexs-MacBook-Pro.local WindowServer[77]: Received display connect changed for display 0x4280380
    Mar 18 10:43:53 Alexs-MacBook-Pro.local blued[66]: kBTXPCUpdateUserPreferences gConsoleUserUID = 501
    Mar 18 10:43:53 Alexs-MacBook-Pro.local WindowServer[77]: Received display connect changed for display 0x3f003d
    Mar 18 10:43:53 Alexs-MacBook-Pro.local WindowServer[77]: Received display connect changed for display 0x3f003e
    Mar 18 10:43:53 Alexs-MacBook-Pro.local WindowServer[77]: Received display connect changed for display 0x3f003f
    Mar 18 10:43:55 Alexs-MacBook-Pro.local talagent[169]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, _kLSApplicationIsHiddenKey, hidden ? kCFBooleanTrue : kCFBooleanFalse, NULL) produced OSStatus -50 on line 623 in TCApplication.m
    Mar 18 10:43:55 Alexs-MacBook-Pro.local talagent[169]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, TAL_kLSIsProxiedForTALKey, kCFBooleanTrue, NULL) produced OSStatus -50 on line 626 in TCApplication.m
    Mar 18 10:43:55 Alexs-MacBook-Pro.local NetworkBrowserAgent[192]: Starting NetworkBrowserAgent
    Mar 18 10:43:55 Alexs-MacBook-Pro.local Finder[189]: *** WARNING: Method userSpaceScaleFactor in class NSWindow is deprecated on 10.7 and later. It should not be used in new applications. Use convertRectToBacking: instead.
    Mar 18 10:43:55 Alexs-MacBook-Pro.local Finder[189]: *** WARNING: Method userSpaceScaleFactor in class NSView is deprecated on 10.7 and later. It should not be used in new applications. Use convertRectToBacking: instead.
    Mar 18 10:43:55 Alexs-MacBook-Pro.local WindowServer[77]: kCGErrorNotImplemented: receive_notification: CPXSetEventFilter failed
    Mar 18 10:43:55 Alexs-MacBook-Pro.local coreservicesd[27]: Can't change an application into stopped state for app App:"TextEdit" [ 0x0/0xe00e]  @ 0x0x7f824941f3b0 because it's already been started.
    Mar 18 10:43:55 Alexs-MacBook-Pro.local CalendarAgent[182]: *** -[IADomainCache init]: IA domains cache is out of date.
    Mar 18 10:43:55 Alexs-MacBook-Pro.local apsd[69]: Unable to bootstrap_lookup connection port for 'com.apple.ubd.system-push': Unknown service name
    Mar 18 10:43:55 Alexs-MacBook-Pro.local SystemUIServer[170]: *** WARNING: Method convertRectToBase: in class NSView is deprecated on 10.7 and later. It should not be used in new applications.
    Mar 18 10:43:55 Alexs-MacBook-Pro.local SystemUIServer[170]: *** WARNING: Method convertRectFromBase: in class NSView is deprecated on 10.7 and later. It should not be used in new applications.
    Mar 18 10:43:56 Alexs-MacBook-Pro.local SystemUIServer[170]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Mar 18 10:43:56 Alexs-MacBook-Pro.local SystemUIServer[170]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Mar 18 10:43:56 Alexs-MacBook-Pro.local WindowServer[77]: kCGErrorNotImplemented: receive_notification: CPXSetEventFilter failed
    Mar 18 10:43:56 Alexs-MacBook-Pro.local Mail[187]: Using V2 Layout

    tdanielcox wrote:
    1. Saving PSD's / Smart Objects.  Most of the time, whenever I try to save a PSD or smart object in PS, it prompts me with an error that says:  Could not save "..." because the file already in use or was left open by another program.
    This frequently occurs becasue it is being used someplace else.  It could be Bridge that is trying to build the cache, or it could be Windows indexing files.  Many turn Windows indexing off for this reason.
    2.  Freezing / Crashing.  I have never experienced photoshop freezing or crashing as much as I have with this update.  This happens during save (when it actually does save.) Though it only happens rarely, it happens enough to get me into some trouble when I loose all the work I have done since the last save.  (Happened 4 times in about 16 hours of use) 
    Are you saving over a network?  Best to save locally and copy to network.
    Also, CS6 puts a lot of stain on GPU driver.  For ATI the best driver is 12.8 and 13.3 v 6 beta (not sure if this is out of beta or not).  The ones inbetween are not so good.
    Note, if PS crashes it will save a copy on scratch disk if you have this option turned on in preferences.
    If it actually crashes, as opposed to freezing, check out the Event Log and look for Faulting Module.

Maybe you are looking for