Changeset 063c879 for lib/libtrace.h
- Timestamp:
- 10/11/04 14:48:11 (18 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:
- be78902
- Parents:
- 886c3d9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/libtrace.h
r1a857f1 r063c879 358 358 TRACE_EVENT_SLEEP, 359 359 TRACE_EVENT_PACKET 360 } libtrace_event _t;361 362 typedef struct libtrace_eventobj{363 libtrace_event _t type;360 } libtrace_eventtype_t; 361 362 struct libtrace_event_t { 363 libtrace_eventtype_t type; 364 364 int fd; 365 365 double seconds; 366 } libtrace_eventobj_t;366 }; 367 367 368 368 /** process a libtrace event … … 379 379 * TRACE_EVENT_PACKET Packet arrived in <buffer> with size <size> 380 380 */ 381 libtrace_eventobj_t trace_event(struct libtrace_t *trace,381 struct libtrace_event_t trace_event(struct libtrace_t *trace, 382 382 struct libtrace_packet_t *packet); 383 383
Note: See TracChangeset
for help on using the changeset viewer.