summaryrefslogtreecommitdiffstats
path: root/refarray
Commit message (Collapse)AuthorAgeFilesLines
* Clean doxygen configurationsDmitri Pal2012-10-241-34/+1
| | | | | The doxygen files contained some deprecated values and typos. This patch cleans them for all interfaces exposed by ding libs.
* Coverity issues 10071 & 10072Dmitri Pal2011-01-031-7/+7
| | | | | | The unit tests we actually not executed due to wrong initialization. Also the pointers were not correctly dereferenced in the string array test.
* Minor tracing cleanupDmitri Pal2010-12-211-4/+6
|
* Adding ref_array copy methodDmitri Pal2010-12-213-40/+355
| | | | | | | | * 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-192-4/+4
| | | | | This is NOT a relicensing. These files were mislabeled. They were always LGPLv3+.
* Fix version handling of the librariesSumit Bose2010-09-231-2/+2
|
* 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.
* Build all of the ding-libs from the rootStephen Gallagher2010-09-228-1037/+0
| | | | | This changes our approach from having independent tarballs to having a single, monolithic tarball for all of the libraries
* ref_array: add RPM build targetsStephen Gallagher2010-08-183-2/+111
|
* Update refarray for new build systemStephen Gallagher2010-08-133-4/+6
|
* 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.