On Mon, 5 May 2025 at 10:16, Uros Bizjak wrote:
>
> On Thu, May 1, 2025 at 12:59 PM Jonathan Wakely wrote:
> >
> > This includes the P2810R4 (is_debugger_present is_replaceable) changes,
> > allowing std::is_debugger_present to be replaced by the program.
> >
> > It would be good to provide a mac
On Thu, May 1, 2025 at 12:59 PM Jonathan Wakely wrote:
>
> This includes the P2810R4 (is_debugger_present is_replaceable) changes,
> allowing std::is_debugger_present to be replaced by the program.
>
> It would be good to provide a macOS definition of is_debugger_present as
> per https://developer
On Mon, 5 May 2025, 09:53 Jonathan Wakely, wrote:
>
>
> On Mon, 5 May 2025, 09:23 Sam James, wrote:
>
>> Jonathan Wakely writes:
>>
>> > [...]
>> > +void
>> > +std::breakpoint() noexcept
>> > +{
>> > + PROBE(std::breakpoint);
>> > +
>> > + if (__gnu_cxx::debugger_signal_for_breakpoint > 0)
>>
On Mon, May 5, 2025 at 10:55 AM Jonathan Wakely
wrote:
>
>
> On Mon, 5 May 2025, 09:23 Sam James, wrote:
>
>> Jonathan Wakely writes:
>>
>> > [...]
>> > +void
>> > +std::breakpoint() noexcept
>> > +{
>> > + PROBE(std::breakpoint);
>> > +
>> > + if (__gnu_cxx::debugger_signal_for_breakpoint >
On Mon, 5 May 2025, 09:23 Sam James, wrote:
> Jonathan Wakely writes:
>
> > [...]
> > +void
> > +std::breakpoint() noexcept
> > +{
> > + PROBE(std::breakpoint);
> > +
> > + if (__gnu_cxx::debugger_signal_for_breakpoint > 0)
> > +std::raise(__gnu_cxx::debugger_signal_for_breakpoint);
> > +
Jonathan Wakely writes:
> [...]
> +void
> +std::breakpoint() noexcept
> +{
> + PROBE(std::breakpoint);
> +
> + if (__gnu_cxx::debugger_signal_for_breakpoint > 0)
> +std::raise(__gnu_cxx::debugger_signal_for_breakpoint);
> +
glib's https://gitlab.gnome.org/GNOME/glib/-/blob/main/glib/gbackt
On Thu, May 1, 2025 at 12:59 PM Jonathan Wakely wrote:
> This includes the P2810R4 (is_debugger_present is_replaceable) changes,
> allowing std::is_debugger_present to be replaced by the program.
>
> It would be good to provide a macOS definition of is_debugger_present as
> per https://developer.
This includes the P2810R4 (is_debugger_present is_replaceable) changes,
allowing std::is_debugger_present to be replaced by the program.
It would be good to provide a macOS definition of is_debugger_present as
per https://developer.apple.com/library/archive/qa/qa1361/_index.html
but that isn't inc