To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76554
------- Additional comments from [EMAIL PROTECTED] Mon May 28 20:38:57 +0000
2007 -------
Windows heap is consumed by a appliations in varying amounts. I have a (bad?)
habit of keeping quite a few appliations active..
By watching the heap monitor (see below) I can see heap increasing. The
applications which seem to use big chunks of heap are:
- Windows (File) Explorer -- particularly with multiple instances open. A big
chunk of heap is released after the last Explorer is closed
- Outlook 2003
- Intuit products - Quicken and QuickBooks Pro
- Adobe products - Photoshop Elements (3.0) and Premier Elements (1.0)
I use the following (cygwin) bash script to use dheapmon.exe (described in the
first comment) to periodically monitor the heap usage
HEAPCMD=/cygdrive/c/kktools/dheapmon8.1/x86/dheapmon.exe
$HEAPCMD -l
while true
do
HEAPUSED=`$HEAPCMD | grep "WinSta0.*Default" | cut -c 55-56`
if [ $HEAPUSED -gt 92 ]; then
echo -e `date` "\007Heap limit exceeded" $HEAPUSED
sleep 10
else
echo `date` " Heap OK" $HEAPUSED
sleep 30
fi
done
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]