trace_point_t -> struct trace_point

Remove misleading typedef and redundant suffix from struct trace_point.
This commit is contained in:
Zachary T Welch 2009-11-13 08:45:19 -08:00
parent 151347585a
commit 73ad5cbb1a
2 changed files with 4 additions and 4 deletions

View File

@ -82,7 +82,7 @@ COMMAND_HANDLER(handle_trace_point_command)
/* resize array if necessary */
if (!trace->trace_points || (trace->trace_points_size == trace->num_trace_points))
{
trace->trace_points = realloc(trace->trace_points, sizeof(trace_point_t) * (trace->trace_points_size + 32));
trace->trace_points = realloc(trace->trace_points, sizeof(struct trace_point) * (trace->trace_points_size + 32));
trace->trace_points_size += 32;
}

View File

@ -25,17 +25,17 @@
struct target_s;
struct command_context_s;
typedef struct trace_point_s
struct trace_point
{
uint32_t address;
uint64_t hit_counter;
} trace_point_t;
};
typedef struct trace_s
{
uint32_t num_trace_points;
uint32_t trace_points_size;
trace_point_t *trace_points;
struct trace_point *trace_points;
uint32_t trace_history_size;
uint32_t *trace_history;
uint32_t trace_history_pos;