Changeset b6ff245
- Timestamp:
- 11/27/18 11:30:32 (2 years ago)
- Branches:
- develop
- Children:
- 1ed3f1e
- Parents:
- 0a474e3
- Location:
- lib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/data-struct/object_cache.c
r0a474e3 rb6ff245 145 145 /*assert (lcs->t_mem_caches_total > 0);*/ 146 146 if (lcs->t_mem_caches_total <= 0) { 147 147 fprintf(stderr, "Expected lcs->t_mem_caches_total to be greater or equal to 0 in resize_memory_caches()\n"); 148 return; 148 149 } 149 150 lcs->t_mem_caches += 0x10; … … 267 268 /*assert(buffer_size);*/ 268 269 if (!buffer_size) { 269 fprintf(stderr, "NULL bu gger_size passed into libtrace_ocache_init()\n");270 fprintf(stderr, "NULL buffer_size passed into libtrace_ocache_init()\n"); 270 271 return -1; 271 272 } -
lib/format_dag25.c
rf6f3ae5 rb6ff245 1522 1522 } 1523 1523 if (!stat) { 1524 trace_set_err , TRACE_ERR_STAT, "NULL stat passed into dag_get_statistics()");1524 trace_set_err(libtrace, TRACE_ERR_STAT, "NULL stat passed into dag_get_statistics()"); 1525 1525 return; 1526 1526 } … … 1546 1546 } 1547 1547 if (!stat) { 1548 trace_set_err , TRACE_ERR_STAT, "NULL stat passed into dag_get_thread_statistics()");1548 trace_set_err(libtrace, TRACE_ERR_STAT, "NULL stat passed into dag_get_thread_statistics()"); 1549 1549 return; 1550 1550 } -
lib/trace.c
rf6f3ae5 rb6ff245 1009 1009 1010 1010 if (trace_is_err(libtrace)) 1011 /*trace_set_err(libtrace, TRACE_ERR_BAD_STATE, "Trace is in an error state trace_read_packet()");*/1012 1011 return -1; 1013 1012 -
lib/trace_parallel.c
rf6f3ae5 rb6ff245 2517 2517 res.key = key; 2518 2518 res.value = value; 2519 assert(libtrace->combiner.publish); 2519 /*assert(libtrace->combiner.publish);*/ 2520 if (!libtrace->combiner.publish) { 2521 fprintf(stderr, "Unable to publish result in trace_publish_result()\n"); 2522 return; 2523 } 2520 2524 libtrace->combiner.publish(libtrace, t->perpkt_num, &libtrace->combiner, &res); 2521 2525 return;
Note: See TracChangeset
for help on using the changeset viewer.