8000 gh-127604: Allow faulthandler to dumpC stack on MacOS by pablogsal · Pull Request #132841 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-127604: Allow faulthandler to dumpC stack on MacOS #132841

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 23, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Apply suggestions from code review
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
  • Loading branch information
pablogsal and ZeroIntensity authored Apr 23, 2025
commit 84175cf8691ca349a50b887a5d7c89f46f887ea0
4 changes: 2 additions & 2 deletions Python/traceback.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
#endif

#if (defined(HAVE_EXECINFO_H) && defined(HAVE_DLFCN_H) && defined(HAVE_LINK_H))
#define _PY_HAS_BACKTRACE_HEADERS 1
# define _PY_HAS_BACKTRACE_HEADERS 1
#endif

#if (defined(__APPLE__) && defined(HAVE_EXECINFO_H) && defined(HAVE_DLFCN_H))
#define _PY_HAS_BACKTRACE_HEADERS 1
# define _PY_HAS_BACKTRACE_HEADERS 1
#endif

#ifdef _PY_HAS_BACKTRACE_HEADERS
Expand Down
Loading
0