Commit 27ba3fb4c8f2a463a1364d6787c3a6d50644d5f3
authorSami Liedes <sliedes@cc.hut.fi>
Sun, 20 Feb 2011 16:55:10 +0000 (18:55 +0200)
committerSami Liedes <sliedes@cc.hut.fi>
Mon, 28 Feb 2011 01:07:44 +0000 (03:07 +0200)
sim_gdb.c did not include sim_gdb.h. Also there was a slight
difference in the prototype in the header and the implementation in
the .c, causing a warning.

Signed-off-by: Sami Liedes <sliedes@cc.hut.fi>
2 files changed:
simavr/sim/sim_gdb.c
simavr/sim/sim_gdb.h

index 37680228bb2c0b0c03c0be9dc2020a7effa2e8a5..4b699bf3d347b94d27d86f928d1f841e503c081c 100644 (file)
@@ -34,6 +34,7 @@
 #include "sim_avr.h"
 #include "sim_hex.h"
 #include "avr_eeprom.h"
+#include "sim_gdb.h"
 
 #define DBG(w)
 
index 497dabf087f96ce0e6f6a8c865d0d55010e1bb96..bb955aec08c939f5930464a8f82deb22a494d716 100644 (file)
@@ -29,7 +29,7 @@ extern "C" {
 int avr_gdb_init(avr_t * avr);
 
 // call from the main AVR decoder thread
-int avr_gdb_processor(avr_t * avr, uint32_t sleep);
+int avr_gdb_processor(avr_t * avr, int sleep);
 
 #ifdef __cplusplus
 };