Add hardware watchpoint support for x86 GNU Hurd.
[deliverable/binutils-gdb.git] / gdb / gnu-nat.c
index c8164d60f3037b19279300ad858e9fea1e10d87e..d17a7503c60b57830dda515f16caa9b0006d8142 100644 (file)
@@ -983,6 +983,17 @@ inf_port_to_thread (struct inf *inf, mach_port_t port)
   return 0;
 }
 
+/* See gnu-nat.h.  */
+
+void
+inf_threads (struct inf *inf, inf_threads_ftype *f, void *arg)
+{
+  struct proc *thread;
+
+  for (thread = inf->threads; thread; thread = thread->next)
+    f (thread, arg);
+}
+
 \f
 /* Make INF's list of threads be consistent with reality of TASK.  */
 void
This page took 0.025556 seconds and 4 git commands to generate.