summaryrefslogtreecommitdiffstats
path: root/common/refarray
Commit message (Collapse)AuthorAgeFilesLines
* Remove common directoryStephen Gallagher2010-08-1911-3909/+0
| | | | | | | All files formerly in common are now being built individually out of the ding-libs repository. git clone git://git.fedorahosted.org/git/ding-libs.git
* Extending refarray interfaceDmitri Pal2010-04-303-1/+563
| | | | | | | | Added functions to inert, delete, replace swap the array elements. Unit test and docs have been updated accordingly. Fixing review comments for refarray.
* Adding interface documentationDmitri Pal2010-04-084-19/+1726
| | | | Package refarray documentation by default
* Split refarray off into a shared libraryStephen Gallagher2010-02-034-10/+13
|
* Add license files for refarrayStephen Gallagher2010-02-032-0/+839
|
* REFARRAY: New referenced array objectDmitri Pal2010-01-217-0/+798
This object allows creation the arrays with the reference count. Usefull when there are many instances of some object have to reference dynamically allocated array which is common for all these instances. In case of ELAPI the event object keeps a referecne to the common array of the sinks in the fail over order. We decided that it will be a common object not specific only to ELAPI. All the review concerns related to this object have been addressed in this patch. It also has been moved to the common area.