You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because I need it, I guess, and you want to serve people like me? If you want to detect SIGABRT on one platform, why wouldn't you want to detect it everywhere possible?
Describe the proposal.
Do something like I've done (as a workaround): define a suite of portable death test macros and make them test as much as possible on whatever platform I'm running on. Detecting abort on Windows in my case involves installing a signal handler that prints a unique string, which you could do less-intrusively upon invocation of the test, chaining to whatever was previously installed, and uninstalling it afterwards.
Is the feature specific to an operating system, compiler, or build system version?
Sort of, depending on how you interpret the question. The point is that the feature can be used without regard to those things.
The text was updated successfully, but these errors were encountered:
Does the feature exist in the most recent commit?
No
Why do we need this feature?
Because I need it, I guess, and you want to serve people like me? If you want to detect
SIGABRT
on one platform, why wouldn't you want to detect it everywhere possible?Describe the proposal.
Do something like I've done (as a workaround): define a suite of portable death test macros and make them test as much as possible on whatever platform I'm running on. Detecting abort on Windows in my case involves installing a signal handler that prints a unique string, which you could do less-intrusively upon invocation of the test, chaining to whatever was previously installed, and uninstalling it afterwards.
Is the feature specific to an operating system, compiler, or build system version?
Sort of, depending on how you interpret the question. The point is that the feature can be used without regard to those things.
The text was updated successfully, but these errors were encountered: