Changeset d56089a for tools/tracemerge
- Timestamp:
- 12/15/05 14:16:33 (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:
- 9c87732
- Parents:
- b8bb4c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/tracemerge/tracemerge.c
r3840760 rd56089a 50 50 usage(argv[0]); 51 51 52 output=trace_ output_create(argv[optind]);52 output=trace_create_output(argv[optind]); 53 53 if (!output) { 54 54 fprintf(stderr,"Unable to open output file %s\n",argv[optind]); … … 63 63 struct libtrace_packet_t *p; 64 64 f=trace_create(argv[i+optind]); 65 p=trace_ packet_create();65 p=trace_create_packet(); 66 66 input[i]=f; 67 67 packet[i]=p; … … 111 111 112 112 } 113 trace_ output_destroy(output);113 trace_destroy_output(output); 114 114 115 115 return 0;
Note: See TracChangeset
for help on using the changeset viewer.