summaryrefslogtreecommitdiffstats
path: root/refarray/ref_array.c
Commit message (Collapse)AuthorAgeFilesLines
* Minor tracing cleanupDmitri Pal2010-12-211-4/+6
|
* Adding ref_array copy methodDmitri Pal2010-12-211-27/+108
| | | | | | | | * Added a method to copy ref array * Added unit test to check copy functionality * Took advantage of the new trace macros * Reworked the debug function to be able to trace arrays with different types of data.
* Fix license text for several files that should be LGPLv3+Stephen Gallagher2010-11-191-2/+2
| | | | | This is NOT a relicensing. These files were mislabeled. They were always LGPLv3+.
* Fixing the cleaup codeDmitri Pal2010-09-221-4/+6
| | | | | | It turned out that the array cleanup was assuming that the data always requires cleanup. In case of array of numbers it is a false assumtion.
* Extending refarray interfaceDmitri Pal2010-04-301-1/+196
| | | | | | | | Added functions to inert, delete, replace swap the array elements. Unit test and docs have been updated accordingly. Fixing review comments for refarray.
* REFARRAY: New referenced array objectDmitri Pal2010-01-211-0/+294
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.