Reference counting is a mechanism whereby a computer language keeps track of when you create and then no longer need an object or data structure, in order to free unneeded memory. Traditionally this would have been done manually by the programmer.
2
votes
1answer
61 views
Smart Pointer in C with reference loops
Aside from doing this in C (way too late to turn back now) I've written a couple of structs and functions that support reference counting for C. Essentially I've implemented C++ style Smart Pointers. ...
0
votes
1answer
44 views
Looking for a smart map
I have a global map to store smartpointers.
Other classes getting these pointers by key.
They have the using key as member variabel: int USING_POINTER_KEY.
So I can define in "getGlobalPointer": ...
4
votes
2answers
111 views
How does Objective-C do reference counting efficiently?
I'm taking a college course about compilers and we just finished talking about garbage collection and ways to free memory. However, in class lectures and in our textbook, I was led to believe that ...
0
votes
3answers
54 views
Semantic of empty shared_ptr
I've noticed a strange fact about shared_ptr
int* p = nullptr;
std::shared_ptr<int> s(p); // create a count (1).
std::shared_ptr<int> s2(s); // count go to 2.
assert(s.use_count() == 2);
...
0
votes
1answer
31 views
What are the reference-counting rules for reinterpret_cast from raw pointers to hatted ones?
If I use a reinterpret_cast to convert from IInspectable* to Object^, am I still responsible for releasing the original IInspectable*?
Clearly the produced Object^ will release itself when it goes ...
9
votes
2answers
277 views
Abstract base class for use with smart pointers (intrusive_ptr) - handling inheritance, polymorphism, cloneability and returning from factory methods
Requirements
I am writing a class called RCObject, which stands for "Reference Counted Object";
The class RCObject should be abstract, serving as the base class of a framework (EC++3 Item 7);
...
6
votes
2answers
164 views
Why should Py_INCREF(Py_None) be required before returning Py_None in C?
Why should Py_INCREF(Py_None) be required before returning Py_None in C as follows?
Py_INCREF(Py_None);
return Py_None;
If Py_INCREF(Py_None) is omitted, what will happen?
0
votes
0answers
51 views
Boost signals during destructor causing sigabrt
I started tracking object destruction using boost::signals2. I wrote a small test just to see if I could still use signals in destructors here. It seemed to work. I then started using it for tracking ...
0
votes
1answer
96 views
NSArrayController addObject/removeObject changes reference counts differently
I assumed that NSArrayController's addObject and removeObject would work similarly to analogues in NSMutableArray.
However, it looks like addObject increases the refcount on its target object by 3, ...
1
vote
2answers
72 views
multiple threads vs reference counting: does each thread count variables separately
I've been playing around with glib, which
utilizes reference counting to manage memory for its objects;
supports multiple threads.
What I can't understand is how they play together.
Namely:
In ...
0
votes
1answer
55 views
approach to null all references to objects created by a Java ThreadFactory
I have a Java ThreadFactory implementation spawning runnable thread subclass objects in my Android application. This application requires that all spawned threads are addressable before a certain ...
1
vote
0answers
54 views
Extending SafeHandle to automatically invoke a function when handle is set
Is there a way to implement a SafeHandle class that can be made to automatically call a function when its handle field is set to a valid value? (much in the same way that Release abstract function is ...
3
votes
1answer
100 views
Vala reference counting and parameter passing
After experimenting with Vala and inspecting the generated C source code i came up with the following Vala code:
class Foo : GLib.Object {
public string baz;
}
class Main : GLib.Object {
...
0
votes
1answer
136 views
How to build a Garbage Collector?
I'm working in Flash, and attempting to use the new "domain memory" available in Flash Player. This essentially lets you work with memory at a low level, but you have to manage the memory yourself, ...
2
votes
1answer
136 views
Why doesn't std::shared_ptr use reference linking?
std::shared_ptr needs to allocate a control block on the heap which holds the reference count. There was another approach I learnt from http://ootips.org/yonat/4dev/smart-pointers.html which keeps all ...
0
votes
0answers
61 views
Can the heap manager be identified from memory block?
I have an application that consists of a host program and a few plugins. The plugins are implemented in dlls that can be dynamically loaded and unloaded. The code of the plugins (inside the dlls) ...
0
votes
1answer
88 views
Python C Api and correct handling of memory in C++ classes
I'm wondering how to cope with the following problem. Inside my C++ class I have an auxiliary PyObject pointer.
class Foo
{
public:
// Should I new the dictionary here in constructor?
...
1
vote
3answers
79 views
How to do reference counting in C - parameter passing
The basics of reference counting for allocated struct 'objects' seem pretty straightforward to me: Give new objects a RC of 1; On assignment decrement the RC (and free if RC=0) of the old object and ...
0
votes
2answers
64 views
Why should I use autorelease in this scenario?
I'm an objective-c newbie and I just can't understand why it is a bad idea to release object that doesn't belong to me.
Let's say I have this in the method called Europe
//initForStringTheory is a ...
4
votes
2answers
178 views
How does Apple's Objective-C runtime do multithreaded reference counting without degraded performance?
So I was reading this article about an attempt to remove the global interpreter lock (GIL) from the Python interpreter to improve multithreading performance and saw something interesting.
It turns ...
1
vote
2answers
130 views
Is there such a thing as a shared reference count smart pointer?
Programmers using boost::shared_ptr need to avoid cycles so that a resource leak is not created. The general advice is to use a boost::weak_ptr in the cases where such a cycle might be created. ...
1
vote
1answer
111 views
Memory Leaks and Reference Counting in Python/C API
I am pretty new to Python and its C API. I still do not understand how reference counting works. I have written a module for particle tracking that exposes to python a number of C++ thread tracking ...
0
votes
3answers
269 views
Objective-C ARC Should constructor set Instance Variable or Property? [duplicate]
Possible Duplicate:
Should I refer to self.property in the init method with ARC?
I'm new to Objective-C and still trying to get my head around everything that's different (from C# and C). ...
1
vote
1answer
88 views
How does NSObject's reference counting system work?
I understand that NSObject does not have a retainCount instance variable - in fact it has no instance variable relating to its lifetime or reference counted environment. My question is therefore, how ...
5
votes
8answers
616 views
Detecting memory leak in reference counted objects
I am trying to print on which line addref and release is called.Here is code
In code below I have created on ReferenceCount class whose main functionality to increase and decrease refernce count.
...
2
votes
2answers
187 views
QSharedData and inheritance
I'm trying to make a type system while using QSharedData. The idea is simple, there will be a number of different data types, each of which is going to be derived from the base abstract class. I want ...
14
votes
4answers
2k views
What is the maximum reference count in std::shared_ptr? What happens if you try to exceed it?
If we assume that std::shared_ptr stores a reference count (which I realize the standard does not require, but I am unaware of any implementations that don't), that reference count has a limited ...
0
votes
1answer
66 views
how to fix incorrect reference count of DLLs from Wix installer
I'm using WIX installer and trying to delete the installation of a program.
The problem is that I have an incorrect reference count .
I'll try to be more specific-
I have 2 computers
on the first ...
0
votes
1answer
380 views
Thread safety of the reference count of a C++/CX WinRT pointer
I was under the impression that the reference count to WinRT objects was thread safe, given the use case. But I've run into a bug that I don't know any other way to explain. For example, the following ...
5
votes
2answers
500 views
When is NS_RETURNS_RETAINED needed?
Take the below example:
- (NSString *)pcen NS_RETURNS_RETAINED {
return (__bridge_transfer NSString *)CFURLCreateStringByAddingPercentEscapes(NULL, (__bridge CFStringRef) self, NULL, ...
1
vote
1answer
80 views
retainCount always is -1?
Can anyone help, i have some code and i am checking the retainCount but its always -1, it should be 1 at least?
here is my code, what am i doing wrong?
NSNumber* n = [[NSNumber alloc] ...
2
votes
1answer
46 views
How to achieve a reference-counted shared instance in Autofac?
I have a service IService that several components depend on. The components come and go depending on user actions.
It so happens that the implementation of IService is expensive, and I want 1 ...
6
votes
4answers
580 views
Reference Counting in C++ OO-Style
I came accross an intriguing implementation of a base class on the C++ FAQ that, according to my naive understanding, could serve as an alternative to some of the smart pointer implementations (e.g. ...
-3
votes
2answers
60 views
iOS and ARC management [duplicate]
Possible Duplicate:
release method deprecated
I have this code
NSURLRequest *request = [[NSURLRequest alloc] initWithURL:yourURL];
Do I need to release it if my project is using ARC? ...
4
votes
3answers
159 views
Java Multithreading: Behaviour when Reference count of thread object becomes zero
[Before I begin I tried searching related questions, since I found none, I ask a question here]
I am learning Java, and the following scenario hit my head:
class MyThread extends Thread {
void ...
2
votes
2answers
95 views
Reference counting without Garbage Collection
I am taking a course on programming language design, and one of the topics is Garbage Collection. I understood from the material that RC can be used for GC, but that it also has other uses, and that ...
1
vote
2answers
215 views
Compiler: How to implement Reference Counting (in a simple VM)
Ive written a very simple Compiler that translates my source language to bytecode, this code gets processed by the VM (as a simple stack machine, so 3 + 3 will get translated into
push 3
push 3
add
...
0
votes
2answers
265 views
Object with reference count equals to 0 is still persistent
I am trying to enhance the memory allocation in my non-ARC app.
There are some objects that, even if their reference count are 0, they are listed as persistent object between two heapshot.
This is ...
3
votes
6answers
655 views
C# - How to access a static class variable given only the class type?
This is my first time posting on Stack Overflow, so hopefully I did everything right and you guys can help.
I'm wondering if in C# there's a way to access a static variable belonging to a class, when ...
0
votes
0answers
84 views
Python C-API reference stealing on raising exceptions
If a Python C-API function is documented as stealing references to its arguments, will it steal those references even if it raises an exception?
Looking at listobject.c, it seems that at least ...
-1
votes
2answers
120 views
shared_ptr / weak_ptr implementations for objective-C
Noticing how badly implemented is reference counting in current Objective-C (see here and here), i'm sure there must be a library out there providing something similar to c++ shared_ptr and weak_ptr ...
6
votes
5answers
445 views
Objective c - Reference counting
Until five minutes I was sure that my understanding about Objective c reference counting is excellent, but when I started checking objects retainCount I was very surprised to see what I saw.
For ...
1
vote
1answer
616 views
Is cv::Mat thread-safe (atomic assignment + refcounting)?
I'm attempting to share an image, that is only being used read-only, across threads. Typically I do this sort of thing with boost::shared_ptrs but since cv::Mat is already a reference counting ...
0
votes
2answers
92 views
Reference count of Managed Objects
I have class A (subclass of NSManagedObject) that has a property of class B (also subclass of NSManagedObject), the property is @synthesize not @dynamic, there is no relationship between A and B in my ...
0
votes
3answers
216 views
Overcoming the race condition in lock-free reference-counted dereferences
Imagine a structure like this:
struct my_struct {
uint32_t refs
...
}
for which a pointer is acquired through a lookup table:
struct my_struct** table;
my_struct* my_struct_lookup(const ...
2
votes
3answers
131 views
PHP null and copy-on-write
Suppose I want to have two variables and have them both equal to null. (More realistically, I am thinking about an array that contains a large amount of nulls, but the "two variables" scenario is ...
6
votes
2answers
296 views
Python C-API functions that borrow and steal references
The standard convention in the Python C-API is that
functions do not steal references from input arguments (that are objects)
return values and output arguments (that are objects) own a reference
...
1
vote
1answer
97 views
Objective C Class instance properties deallocating in UITableViewController
Working on an iPhone app where I have a class instance that is defined as a global and initialized in in ViewDidLoad for a UITableViewController.
When it gets to cellForRowAtIndexPath, the instance ...
2
votes
7answers
575 views
Lock-free Reference Counting
I'm working on a system that requires extensive C API interop. Part of the interop requires initialization and shutdown of the system in question before and after any operations. Failure to do ...
1
vote
2answers
809 views
Using ARC on iOS 4, do I need to nil my IBOutlet properties when using unsafe_unretained instead of weak?
When using ARC with iOS 5, a weak IBOutlet creates a zeroing reference, avoiding the need to
self.< IBOutlet property > = nil;
in -(void)viewDidUnload
If I'm using iOS 4 (and using ARC) and ...
