From: Doug Evans Date: Mon, 3 May 2010 20:58:21 +0000 (+0000) Subject: * event-loop.c (gdb_timer): Delete unused global. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=ae462839efc22221630119059db5e6e20c7f843c;hp=24b066ba2b90ef215c6c414ae1d15f79a8addefc;p=deliverable%2Fbinutils-gdb.git * event-loop.c (gdb_timer): Delete unused global. (create_timer): Update. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9f3456c74a..4aa6df47fd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2010-05-03 Doug Evans + + * event-loop.c (gdb_timer): Delete unused global. + (create_timer): Update. + 2010-05-03 Jan Kratochvil * cp-namespace.c (cp_lookup_symbol_imports): Support ALIAS for the diff --git a/gdb/event-loop.c b/gdb/event-loop.c index 533eefea96..735d0f6f9a 100644 --- a/gdb/event-loop.c +++ b/gdb/event-loop.c @@ -218,8 +218,7 @@ struct gdb_timer struct gdb_timer *next; timer_handler_func *proc; /* Function to call to do the work */ gdb_client_data client_data; /* Argument to async_handler_func */ - } -gdb_timer; + }; /* List of currently active timers. It is sorted in order of increasing timers. */ @@ -1188,7 +1187,7 @@ create_timer (int milliseconds, timer_handler_func * proc, gdb_client_data clien gettimeofday (&time_now, NULL); - timer_ptr = (struct gdb_timer *) xmalloc (sizeof (gdb_timer)); + timer_ptr = (struct gdb_timer *) xmalloc (sizeof (*timer_ptr)); timer_ptr->when.tv_sec = time_now.tv_sec + delta.tv_sec; timer_ptr->when.tv_usec = time_now.tv_usec + delta.tv_usec; /* carry? */