diff options
author | Dmitri Pal <dpal@redhat.com> | 2009-12-23 15:14:51 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-01-21 15:02:16 -0500 |
commit | 69f65cc8b569d3a280d18ba360d3c37b7f6a76f4 (patch) | |
tree | 98cafb404441e88865d3bcd9fc44f01e664b0a7a /Makefile.am | |
parent | fc43e0f88c82bfcf7c96314a372694bc67929cdc (diff) | |
download | ding-libs-69f65cc8b569d3a280d18ba360d3c37b7f6a76f4.tar.gz ding-libs-69f65cc8b569d3a280d18ba360d3c37b7f6a76f4.tar.xz ding-libs-69f65cc8b569d3a280d18ba360d3c37b7f6a76f4.zip |
REFARRAY: New referenced array object
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.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 1659e0d..29226ea 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ ACLOCAL_AMFLAGS = -I m4 -SUBDIRS = trace collection ini dhash path_utils elapi +SUBDIRS = trace collection ini dhash path_utils refarray elapi dist_noinst_DATA = \ m4 @@ -12,12 +12,14 @@ libsssd_util_la_LIBADD = \ collection/libcollection.la \ ini/libini_config.la \ dhash/libdhash.la \ + refarray/libref_array.la \ elapi/libelapi.la libsssd_util_la_CFLAGS = $(AM_CFLAGS) \ -I ./collection \ -I ./ini \ -I ./dhash \ -I ./elapi \ + -I ./refarray \ -I ./trace endif |