vote up 3 vote down star
3

I am wondering how difficult it would be to integrate a reference counting (or other managed memory) regime for managing some of my struct libraries in C. What sample code would you recommend I look at?

flag

46% accept rate

3 Answers

vote up 2 vote down

This garbage collector is widely used for C (even in gcc)

link|flag
vote up 1 vote down

Python uses garbage collection based on RC and it also solves the circular reference problem (i.e. when you have two or more objects that reference each other but no one else references them; in this case, the ref count will be > 0 but the whole cycle could be collected).

link|flag
vote up 1 vote down

XMLRPC-c and json-c are examples of C libraries that use reference counting (and have slightly different approaches as to when to increment them behind the scenes) . If you are in a multi-threaded environment, you might also be interested in the kref usage in the Linux kernel.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.