9
votes
2answers
271 views
What does Python’s GIL have to do with the garbage collector?
I just saw this section of Unladen Swallow's documentation come up on Hacker News. Basically, it's the Google engineers saying that they're not optimistic about removing the GIL. However, it seems …
1
vote
2answers
15 views
Garbage Collection when Attached dependencyobject is destroyed \ disconnected
Hi Guys,
When we use any attached property against any dependency object, I thunk it actually maps the property and the value with the dependency object.
E.g. <DockPanel><TextBlock …
5
votes
4answers
88 views
Are spinlocks a good choice for a memory allocator?
I've suggested to the maintainers of the D programming language runtime a few times that the memory allocator/garbage collector should use spinlocks instead of regular OS critical sections. This …
4
votes
8answers
173 views
Garbage Collection in Java and Circular References
From my understanding, garbage collection in java cleans up some object iff nothing else is 'pointing' to that object. My question is, what happens if we have something like:
class Node{
public …
0
votes
3answers
64 views
Garbage Collector
i want to know the internal architecture and function of the garbage collector in dotnet in detail.. can anybody help me.
1
vote
1answer
35 views
Why does AppDomain.Unload() error in finalizer?
Here's some sample code:
using System;
namespace UnloadFromFinalizer
{
class Program
{
static void Main(string[] args)
{
Program p = new Program();
}
…
2
votes
3answers
62 views
What GC parameters is a JVM running with?
I'm still investigating issues I have with GC tuning (see prior question), which involves lots of reading and experimentation.
Sun Java5+ JVMs attempt to automatically select the optimal GC strategy …
0
votes
4answers
96 views
Is it possible to change the priority of garbage Collector thread?
Java garbage collector runs with priority 1, due to which it is not guaranteed that System.gc() will actually execute if called.
Is there any way to change its priority? This shall enable me to run …
11
votes
1answer
63 views
.NET Garbage Collection and Native Threads
It’s fairly well documented that when .NET's automatic garbage collector runs, it will temporarily pause all running managed threads associated with the application domain. What I haven't been able to …
3
votes
6answers
131 views
Why don’t managed languages offer the ability to manually delete objects?
Lets say you want to write a high performance method which processes a large data set.
Why shouldn't developers have the ability to turn on manual memory management instead of being forced to move to …
4
votes
5answers
105 views
Why are file handles such an expensive resource?
In holy wars about whether garbage collection is a good thing, people often point out that it doesn't handle things like freeing file handles. Putting this logic in a finalizer is considered a bad …
4
votes
16answers
311 views
Assigning “null” to objects in every application after their use
Do you always assign null to an object after its scope has been reached?
Or do you rely on the JVM for garbage collection?
Do you do it for all sort of applications regardless of their length?
If …
1
vote
1answer
36 views
alloca and ObjectiveC Garbage Collector
In an objective C project with GC enabled, I am allocating an array of variable size on the stack like this:
MaValue *myStack = alloca((sizeof(id) * someLength));
(The reason why I want to do this …
0
votes
4answers
53 views
Java Outputstream behavior when multiple outputstream objects are wrapped
Hi,
I have a code that does compression, encryption and checksum on a File Outputstream. Following is the code-
private void start() {
OutputStream os = null;
try {
os = new …
0
votes
8answers
157 views
When should I call the Java garbage collector? [closed]
Possible Duplicate:
System.gc() in java
Out of curiosity: Does anybody ever use System.gc() in Java? If so, then when do you call it? Before running a memory consuming algorithm? Or after …
