-1
votes
6answers
92 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
13 views
Luabind class deriving problem (memory ‘leak’)
Using luabind 0.81
Simple test to illustrate the problem:
1)
class 'A'
function A:__init()
print('A init\n')
end
function A:__finalize()
print('A finalize\n')
end
do
local obj = A()
…
1
vote
1answer
29 views
C#: What is destroying my NativeWindow object and why?
I am using a NativeWindow object to subclass an unmanaged window's message pump, with the purpose of intercepting its messages.
Code structure looks something like this (its psuedo C#, please excuse …
1
vote
2answers
13 views
How to deterministically release Core Foundation object in Garbage Collected environment?
I use Core Foundation methods in garbage-collected environment. According to documentation call to CFRelease simply decrements reference count but does not release the object:
The difference …
4
votes
5answers
98 views
Are all of the finalizers invoked during a garbage collection?
Let's say i'm trying to allocate 100 bytes, but since I don't have 100 bytes available in my GC heap, a garbage collection is triggered. Also, in my GC heap there's 100mb worth of unreachable objects. …
1
vote
3answers
59 views
When should I use delete vs setting elements to null in JavaScript ?
I have a JS object having a large number of properties. If I want to force the browser to garbage collect this object, do I need to set each of these properties as null or do I need to use the delete …
0
votes
3answers
50 views
Storing a lua class with parent in luabind::object (updated)
Using C++, lua 5.1, luabind 0.7-0.81
Trying to create a lua class with parent and store it in a luabind::object.
Lua
class 'TestClassParent'
function TestClassParent:__init()
print('parent …
2
votes
5answers
153 views
Java references
Is there any way to find all references to an object (in Java)?
I have a cache of objects, and would like to periodically scan it to see if removing the object will cause it to be destroyed.
3
votes
3answers
54 views
What does “garbage collection rate” mean, and what benefit it could provide?
In analyzing Java GC behavior, some tools has the metric "garbage collection rate" (an example would be in figure 19. from http://www.ibm.com/developerworks/java/library/j-ibmtools2/#fig19) of which …
3
votes
4answers
302 views
What alternatives to Hans Boehm GC are out there for small devices?
I'd like to use a virtual machine like NekoVM into a small device but to build it, it requires Boehm GC, however there is no port of that GC to that small device so I was wondering if there is any …
1
vote
1answer
52 views
Problem with luabind::object dereferencing (simplified)
Using C++, lua5.1, luabind 0.7
Lua code:
-- allocates near 8Mb of memory
function fff()
local t = {}
for i = 1, 300000 do
table.insert(t, i)
end
return t
end
C++ code:
{
…
1
vote
2answers
66 views
Lost references in Lua
Having a problem with objects, not needed any more but still having references.
Result: size of allocated memory is constantly growing due to not collected objects.
How to solve this sort of problem?
…
2
votes
8answers
245 views
Programatically invoke garbage collector
Is there a way to invoke the garbage collector on a specific object within managed memory from an application?
e.g. (in pseudo-code)
Read myString from file;
perform arbitrary operation on myString;
…
6
votes
4answers
119 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 …
9
votes
3answers
291 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 …
