Changeset b87e133
- Timestamp:
- 10/25/05 11:16:39 (15 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:
- 5fb1d5d
- Parents:
- f1a1f5e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/dagformat.h
r8f4152b rb87e133 62 62 } __attribute__((packed)) dag_record_t; 63 63 64 65 typedef struct duck_inf 66 { 67 uint32_t Command, Config, Clock_Inc, Clock_Wrap, DDS_Rate; 68 uint32_t Crystal_Freq; 69 uint32_t Synth_Freq, Sync_Rate; 70 uint64_t Last_Ticks; 71 uint32_t Resyncs; 72 uint32_t Bad_Diffs, Bad_Offs, Bad_Pulses; 73 uint32_t Worst_Error, Worst_Off; 74 uint32_t Off_Limit, Off_Damp; 75 uint32_t Pulses, Single_Pulses_Missing, Longest_Pulse_Missing; 76 uint32_t Health, Sickness; 77 int32_t Error, Offset; 78 int32_t Stat_Start, Stat_End; /* these are really time_t's */ 79 uint32_t Set_Duck_Field; 64 typedef struct duck_inf_pkt { 65 uint32_t command; 66 uint32_t config; 67 uint32_t clock_inc; 68 uint32_t clock_wrap; 69 uint32_t DDS_rate; 70 uint32_t crystal_freq; 71 uint32_t synth_freq; 72 uint32_t sync_rate; 73 uint64_t last_ticks; 74 uint32_t resyncs; 75 uint32_t bad_diffs, bad_offs, bad_pulses; 76 uint32_t worst_error, worst_off; 77 uint32_t off_limit, off_damp; 78 uint32_t pulses, single_pulses_missing, longest_pulse_missing; 79 uint32_t health; 80 uint32_t sickness; 81 int32_t error; 82 int32_t offset; 83 int32_t stat_start, stat_end; 84 uint32_t set_duck_field; 80 85 } duck_inf; 81 86
Note: See TracChangeset
for help on using the changeset viewer.