forked from Imagelibrary/binutils-gdb
* 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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user