diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2024-10-30 00:12:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-30 00:12:45 (GMT) |
commit | 2d37c719ed7c54430257028be6b48a1e2d065973 (patch) | |
tree | 772e7edbb2170fae1cccb2c016d2747ee87ad9a8 /Doc | |
parent | 2d9d10179ff3f13029bf4430e62c455a839987ca (diff) | |
download | cpython-2d37c719ed7c54430257028be6b48a1e2d065973.zip cpython-2d37c719ed7c54430257028be6b48a1e2d065973.tar.gz cpython-2d37c719ed7c54430257028be6b48a1e2d065973.tar.bz2 |
gh-124855: Don't allow the JIT and perf support to be active at the same time (#124856)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/sys.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 37f1719..d83816e 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -1757,6 +1757,8 @@ always available. Activate the stack profiler trampoline *backend*. The only supported backend is ``"perf"``. + Stack trampolines cannot be activated if the JIT is active. + .. availability:: Linux. .. versionadded:: 3.12 |