trace_t -> struct trace

Remove misleading typedef and redundant suffix from struct trace.
This commit is contained in:
Zachary T Welch
2009-11-13 09:26:19 -08:00
parent d90063ffc5
commit 4952eadd8f
4 changed files with 8 additions and 8 deletions

View File

@@ -31,7 +31,7 @@ struct trace_point
uint64_t hit_counter;
};
typedef struct trace_s
struct trace
{
uint32_t num_trace_points;
uint32_t trace_points_size;
@@ -40,7 +40,7 @@ typedef struct trace_s
uint32_t *trace_history;
uint32_t trace_history_pos;
int trace_history_overflowed;
} trace_t;
};
typedef enum trace_status
{