- Timestamp:
- 03/12/10 13:48:43 (12 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- b4fd5bc
- Parents:
- aa0c5c5
- Location:
- lib
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/Makefile.am
rc66068d r5e26f1d 27 27 endif 28 28 29 if HAVE_LZO 30 LIBTRACEIO_LZO=iow-lzo.c 31 else 32 LIBTRACEIO_LZO= 33 endif 34 29 35 if HAVE_DAG 30 36 if DAG2_4 … … 48 54 protocols_transport.c protocols.h \ 49 55 $(DAGSOURCE) format_erf.h \ 50 $(LIBTRACEIO_ZLIB) $(LIBTRACEIO_BZLIB) ior-peek.c ior-stdio.c ior-thread.c \ 56 $(LIBTRACEIO_ZLIB) $(LIBTRACEIO_BZLIB) $(LIBTRACEIO_LZO) \ 57 ior-peek.c ior-stdio.c ior-thread.c \ 51 58 iow-stdio.c iow-thread.c wandio.c \ 52 59 wandio.h -
lib/wandio.h
r29d4438 r5e26f1d 162 162 /** Bzip compression */ 163 163 WANDIO_COMPRESS_BZ2 = 2, 164 /** LZO compression */ 165 WANDIO_COMPRESS_LZO = 3, 164 166 /** All supported methods - used as a bitmask */ 165 167 WANDIO_COMPRESS_MASK = 7 … … 182 184 iow_t *zlib_wopen(iow_t *child, int compress_level); 183 185 iow_t *bz_wopen(iow_t *child, int compress_level); 186 iow_t *lzo_wopen(iow_t *child, int compress_level); 184 187 iow_t *thread_wopen(iow_t *child); 185 188 iow_t *stdio_wopen(const char *filename);
Note: See TracChangeset
for help on using the changeset viewer.