Tagged Questions
The refcounting tag has no wiki summary.
8
votes
6answers
716 views
Simplest way to count instances of an object
I would like to know the exact number of instances of certain objects allocated at certain point of execution. Mostly for hunting possible memory leaks(I mostly use RAII, almost no new, but still I ...
8
votes
5answers
345 views
Why the refcount is 2 not 1?
$var = 1;
debug_zval_dump($var);
Output:
long(1) refcount(2)
$var = 1;
$var_dup = &$var;
debug_zval_dump($var);exit;
Output :
long(1) refcount(1)
UPDATE
Very disapointed at ...
7
votes
1answer
208 views
Making a reference-counted object in D using RefCounted!(T)
How do you use std.typecons.RefCounted!(T) to make a reference-counted object in D?
I've tried to figure out what std.array.Array does internally by looking at the source, but while I can read the ...
4
votes
2answers
122 views
recursive reference in Perl
$a=\$a;
The book I'm reading says in this case $a will NEVER be free,my question is why perl interpreter doesn't fix it at compile time?When it finds it's pointing at itself,don't increase refcount.
...
3
votes
2answers
138 views
slow memory release (refcounted structure) - Is my workaround a good way?
in my program i can load a Catalog: ICatalog
a Catalog here contains a lot of refcounted structures (Icollections of IItems, IElements, IRules, etc.)
when I want to change to another catalog,
I load ...
3
votes
2answers
208 views
Another question on thread safe ref counting
There are tons of questions on how to implement thread safe reference counters.
And a common highly voted answer is: "use atomic increment/decrements".
Ok, this is a good way to read and write ...
3
votes
2answers
116 views
python refcounts
So Python Essential Reference, 4 ed. says:
a = {}
b = {}
a['b'] = b
b['a'] = a
del a
del b
creates a memory leak, and the interpreter need a cycle detection algorithm to delete a and b.
However, ...
3
votes
2answers
438 views
Are memory barriers necessary for atomic reference counting shared immutable data?
I have some immutable data structures that I would like to manage using reference counts, sharing them across threads on an SMP system.
Here's what the release code looks like:
void ...
3
votes
2answers
188 views
Is there a way to get the current ref count of an object in Python?
Is there a way to get the current ref count of an object in Python?
3
votes
3answers
771 views
Why is my Python C Extension leaking memory?
The function below takes a python file handle, reads in packed binary data from the file, creates a Python dictionary and returns it. If I loop it endlessly, it'll continually consume RAM. What's ...
2
votes
1answer
46 views
How do I debug refcounts in a Python C-extension the easiest way?
So I have put together a few Python C-extensions and although their respective behaviors are verified, I'd like to verify this by some refcount debugging.
How can I verify that I have inserted the ...
2
votes
3answers
301 views
Why is my C module leaking memory?
I'm reading lists from a large file, which I eventually want to store as array.arrays. Because
map(int, line.split())
is very slow, I wrote a small C module which does strtok and a faster version ...
2
votes
3answers
212 views
Why did instruments report a leak while its ref count did become zero
green hand i am. I'm using instruments, and it did a great help to me so far, but I'm confused now 'cause it report a memory leak to me while its leaked block history shows me that the ref count of ...
1
vote
2answers
84 views
Failing to Release after Multiple Nib loads
I am using a Nib as a template for several buttons. It seemed to work fine, they each have their own independent state. However when I went to release the buttons I would crash in the dealloc. Here ...
1
vote
1answer
193 views
(Ab)using shared_ptr as a reference counter
Recently i thought of a cunning plan(tm :P))
I have to update settings structure in my program(lets say every 15 seconds). Settings structure is used by multiple functions and every of those ...
1
vote
1answer
108 views
Objective-C Memory Handling (iPhone)
I can't say I really understand the memory handling in Objective-C so I have a couple of questions concerning that.
Do I have to remove the objects "url" and "urlRequest" in the box below or does ...
1
vote
3answers
618 views
AddRef and function signature
I've always used the following rule for signatures of functions that return ref-counted objects based on whether they do an AddRef or not, but want to explain it to my colleagues too... So my question ...
0
votes
1answer
88 views
Strange xdebug_debug_zval behavior on function parameters — incorrect (?) refcount displayed
Here's the code:
<?php
function f($b) {
echo xdebug_debug_zval('b');
}
function g() {
echo xdebug_debug_zval('a');
}
$a = 10;
f($a);
f(&$a);
g();
echo xdebug_debug_zval('a');
?>
...
0
votes
5answers
821 views
Why shared_ptr has an explicit constructor
I was wondering why shared_ptr doesn't have an implicit constructor. The fact it doesn't is alluded to here: http://stackoverflow.com/questions/142391/getting-a-boostsharedptr-for-this
(I figured out ...