- Timestamp:
- 02/28/06 10:37:24 (16 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:
- c26ca86
- Parents:
- d8f02df
- Location:
- lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/fifo.c
rd8f02df r5fb2251 64 64 }; 65 65 66 #define MIN(a,b) ({ int _a = a; int _b = b; (_a < _b) ? _a : _b; }) 67 66 /* This MIN is more generic but not as portable 67 * #define MIN(a,b) ({ int _a = a; int _b = b; (_a < _b) ? _a : _b; }) 68 */ 69 #define MIN(a,b) ((a)<(b)?(a):(b)) 68 70 69 71 static char *tracefifo_stat_buffer = 0; … … 207 209 static int tracefifo_read_generic(struct tracefifo_t *fifo, void *buffer, size_t len, enum which_t which, char update) { 208 210 size_t oldptr; 209 int lenleft;211 size_t lenleft; 210 212 int size; 211 213 assert(fifo); … … 232 234 int tracefifo_write(struct tracefifo_t *fifo, void *buffer, size_t len) { 233 235 int lenleft; 234 int size;236 size_t size; 235 237 assert(fifo); 236 238 assert(buffer); -
lib/format_erf.c
rd8f02df r5fb2251 115 115 char *path; 116 116 } conn_info; 117 118 119 117 120 118 union { -
lib/rt_protocol.h
rafd0b73 r5fb2251 72 72 } rt_end_data_t; 73 73 74 typedef struct rt_close {74 typedef struct rt_close { 75 75 76 } rt_close_t; 76 } rt_close_t; 77 77 78 78
Note: See TracChangeset
for help on using the changeset viewer.