OSDN Git Service

* Adapt to target_wait_hook change.
authormuller <muller>
Sun, 24 May 2009 08:38:27 +0000 (08:38 +0000)
committermuller <muller>
Sun, 24 May 2009 08:38:27 +0000 (08:38 +0000)
* generic/gdbtk-hooks.c (gdbtk_wait): Add `options' argument.

gdb/gdbtk/ChangeLog
gdb/gdbtk/generic/gdbtk-hooks.c

index e053317..5ae2fef 100644 (file)
@@ -1,3 +1,8 @@
+2009-05-24  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * Adapt to target_wait_hook change.
+       * generic/gdbtk-hooks.c (gdbtk_wait): Add `options' argument.
+
 2009-05-06  Pierre Muller  <muller@ics.u-strasbg.fr>
 
        * Adapt to read_pc function removal.
index bd1280d..0175957 100644 (file)
@@ -83,7 +83,7 @@ static void gdbtk_detach (void);
 static void gdbtk_file_changed (char *);
 static void gdbtk_exec_file_display (char *);
 static void gdbtk_call_command (struct cmd_list_element *, char *, int);
-static ptid_t gdbtk_wait (ptid_t, struct target_waitstatus *);
+static ptid_t gdbtk_wait (ptid_t, struct target_waitstatus *, int);
 int x_event (int);
 static int gdbtk_query (const char *, va_list);
 static void gdbtk_warning (const char *, va_list);
@@ -658,11 +658,11 @@ gdbtk_post_add_symbol ()
    target.  */
 
 static ptid_t
-gdbtk_wait (ptid_t ptid, struct target_waitstatus *ourstatus)
+gdbtk_wait (ptid_t ptid, struct target_waitstatus *ourstatus, int options)
 {
   gdbtk_force_detach = 0;
   gdbtk_start_timer ();
-  ptid = target_wait (ptid, ourstatus);
+  ptid = target_wait (ptid, ourstatus, options);
   gdbtk_stop_timer ();
   gdbtk_ptid = ptid;