* infcmd.c (finish_backward): Use breakpoint_set_silent.

* python/py-breakpoint.c (bppy_set_silent): Use
	breakpoint_set_silent.
	(bppy_set_thread): Use breakpoint_set_thread.
	(bppy_set_task): Use breakpoint_set_task.
	* breakpoint.h (breakpoint_set_silent, breakpoint_set_thread)
	(breakpoint_set_task): Declare.
	(make_breakpoint_silent): Remove.
	* breakpoint.c (breakpoint_set_silent): New function.
	(breakpoint_set_thread): Likewise.
	(breakpoint_set_task): Likewise.
	(make_breakpoint_silent): Remove.
This commit is contained in:
Tom Tromey 2011-01-31 15:16:59 +00:00
parent 09d682a4f3
commit 45a4356715
5 changed files with 65 additions and 14 deletions

View file

@ -201,7 +201,7 @@ bppy_set_silent (PyObject *self, PyObject *newvalue, void *closure)
if (cmp < 0)
return -1;
else
self_bp->bp->silent = cmp;
breakpoint_set_silent (self_bp->bp, cmp);
return 0;
}
@ -242,7 +242,7 @@ bppy_set_thread (PyObject *self, PyObject *newvalue, void *closure)
return -1;
}
self_bp->bp->thread = id;
breakpoint_set_thread (self_bp->bp, id);
return 0;
}
@ -283,7 +283,7 @@ bppy_set_task (PyObject *self, PyObject *newvalue, void *closure)
return -1;
}
self_bp->bp->task = id;
breakpoint_set_task (self_bp->bp, id);
return 0;
}