Does gdb allow conditional regex breaks?
I have a source file timer.c
, an int64_t
ticks, and a function timer_ticks()
which returns it.
Neither
rbreak timer.c:. if ticks >= 24
nor
rbreak timer.c:. if ticks_ticks() >= 24
place any breakpoints.
If I remove however either the regex part or the conditional part, the breakpoints are set.