6
votes
2answers
108 views
Python: Behavior of the garbage collector
I have a Django application that exhibits some strange garbage collection behavior. There is one view in particular that will just keep growing the VM size significantly every time …
0
votes
5answers
75 views
How do I make Flex/ActionScript 3 objects eligible for Garbage Collection?
How do I make Flex/ActionScript 3 objects eligible for garbage collection? What are the thumb rules?
... apologies if this was answered else where.
0
votes
2answers
119 views
Does garbage collector call Dispose()?
I thought the GC would call Dispose eventually if your program did not but that you should call Dispose() in your program just to make the cleanup deterministic.
However, from my …
0
votes
6answers
160 views
My program crashes when GC perform garbage collection
My program has a trouble: When GC perform garbage collection,my program always crashes at a function,which is called by main flow several times before
crashing and the first line …
0
votes
4answers
67 views
sed regex to non-greedy replace?
I am aware of another question that is quite similar, but for some reason I'm still having problems.
I have a GC log that I'm trying to trim out the Tenured section enclosed in [] …
2
votes
1answer
63 views
Java instance variable visibility (ThreadLocal)
In the class ReentrantReadWriteLock is the following curious comment:
transient ThreadLocalHoldCounter readHolds;
Sync() {
readHolds = new ThreadLocalHoldCounter();
setSt …
6
votes
3answers
140 views
OutOfMemory, but no gcroots for many objects
We are developing a rather large Windows Forms application. In several customers' computers it often crashes with OutOfMemory exception. After obtaining full memory dump of the app …
2
votes
4answers
134 views
OutOFMemory exception
Hi,
1) What are the possible reasons of OutofMemory exception.
2) Memory allocations should be handled by GC.
3) How much memory is allocated/Available to normal .Net/C# applica …
7
votes
1answer
115 views
Guidance on optimising Python runtime for embedded systems with low system resources
My team is incorporating the Python 2.4.4 runtime into our project in order to leverage some externally developed functionality.
Our platform has a 450Mhz SH4 application core an …
6
votes
4answers
142 views
How to handle disposable objects we don’t have a reference to?
If you have a brush and pen as in:
Brush b = new SolidBrush(color);
Pen p = new Pen(b);
and dispose them like so:
b.Dispose();
p.Dispose();
How would you dispose it if it was …
1
vote
5answers
64 views
GC start and stop events
Hi,
Isn't it possible to get an event when the GC begins? I want to time each individual GC so I can see if pauses in my server are due to GC or something else.
The GC pauses al …
3
votes
8answers
236 views
Why are weak pointers useful?
I've been reading up on garbage collection looking for features to include in my programming language and I came across "weak pointers". From here:
Weak pointers are like poin …
1
vote
4answers
151 views
Forcing garbage collection to run in R with the gc() command
Periodically I program sloppily. Ok, I program sloppily all the time, but sometimes that catches up with me in the form of out of memory errors. I start exercising a little discipl …
1
vote
4answers
378 views
JVM throws OutOfMemory during gc though there are plenty memory left…
I have my java application configured to use 5G memory. I got an OutOfMemory out of blue. I inspected the gc log and found plenty of memory left: young generation occupies 4% alloc …
2
votes
1answer
181 views
CUDA global memory deallocation issues in .NET
I have a class (see example bellow) which acts as a .NET wrapper for a CUDA memory structure,
allocated using cudaMalloc() and referenced using a member field of type IntPtr.
(The …
