Changeset 588


Ignore:
Timestamp:
02/16/06 11:07:34 (7 years ago)
Author:
spa1
Message:

Added a fifo state structure to rt_protocol so that wdcap can see it

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/rt_protocol.h

    r583 r588  
    2626#define RT_FORMAT_WAG           3 
    2727 
     28typedef struct fifo_state { 
     29        uint64_t in; 
     30        uint64_t out; 
     31        uint64_t ack; 
     32        uint64_t length; 
     33        uint64_t used; 
     34} fifo_state_t; 
    2835 
    2936// RT packet header 
     
    5158 
    5259typedef struct rt_status { 
    53         tracefifo_state_t fifo_status; 
     60        fifo_state_t fifo_status; 
    5461} rt_status_t; 
    5562 
     
    110117} 
    111118 
     119 
     120 
    112121#endif 
Note: See TracChangeset for help on using the changeset viewer.