Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
215ad664
Kaydet (Commit)
215ad664
authored
Mar 25, 2014
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #12209: Minor edits to faulthandler doc. Patch written by Éric Araujo.
üst
4908910a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
11 deletions
+17
-11
faulthandler.rst
Doc/library/faulthandler.rst
+17
-11
No files found.
Doc/library/faulthandler.rst
Dosyayı görüntüle @
215ad664
...
...
@@ -11,7 +11,7 @@ after a timeout, or on a user signal. Call :func:`faulthandler.enable` to
install fault handlers for the :const:`SIGSEGV`, :const:`SIGFPE`,
:const:`SIGABRT`, :const:`SIGBUS`, and :const:`SIGILL` signals. You can also
enable them at startup by setting the :envvar:`PYTHONFAULTHANDLER` environment
variable or by using :option:`-X` ``faulthandler`` command line option.
variable or by using
the
:option:`-X` ``faulthandler`` command line option.
The fault handler is compatible with system fault handlers like Apport or the
Windows fault handler. The module uses an alternative stack for signal handlers
...
...
@@ -39,8 +39,8 @@ The module is implemented in C, so tracebacks can be dumped on a crash or when
Python is deadlocked.
Dump the traceback
------------------
Dump
ing
the traceback
------------------
---
.. function:: dump_traceback(file=sys.stderr, all_threads=True)
...
...
@@ -69,8 +69,8 @@ Fault handler state
Check if the fault handler is enabled.
Dump the tracebacks after a timeout
-----------------------------------
Dump
ing
the tracebacks after a timeout
-----------------------------------
---
.. function:: dump_traceback_later(timeout, repeat=False, file=sys.stderr, exit=False)
...
...
@@ -90,8 +90,8 @@ Dump the tracebacks after a timeout
Cancel the last call to :func:`dump_traceback_later`.
Dump the traceback on a user signal
-----------------------------------
Dump
ing
the traceback on a user signal
-----------------------------------
---
.. function:: register(signum, file=sys.stderr, all_threads=True, chain=False)
...
...
@@ -110,8 +110,8 @@ Dump the traceback on a user signal
Not available on Windows.
File descriptor issue
---------------------
Issue with file descriptors
---------------------
------
:func:`enable`, :func:`dump_traceback_later` and :func:`register` keep the
file descriptor of their *file* argument. If the file is closed and its file
...
...
@@ -123,9 +123,15 @@ these functions again each time that the file is replaced.
Example
-------
Example of a segmentation fault on Linux: ::
.. highlight:: sh
Example of a segmentation fault on Linux with and without enabling the fault
handler::
$ python3 -c "import ctypes; ctypes.string_at(0)"
Segmentation fault
$ python -q -X faulthandler
$ python
3
-q -X faulthandler
>>> import ctypes
>>> ctypes.string_at(0)
Fatal Python error: Segmentation fault
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment