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
Copy file name to clipboardExpand all lines: clang/docs/RealtimeSanitizer.rst
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -187,15 +187,15 @@ A **partial** list of flags RealtimeSanitizer respects:
187
187
* - ``abort_on_error``
188
188
- OS dependent
189
189
- boolean
190
-
- If true, the tool calls abort() instead of _exit() after printing the error report. On some OSes (OSX, for exmple) this is beneficial because a better stack trace is emitted on crash.
190
+
- If true, the tool calls ``abort()`` instead of ``_exit()`` after printing the error report. On some OSes (MacOS, for exmple) this is beneficial because a better stack trace is emitted on crash.
191
191
* - ``symbolize``
192
192
- ``true``
193
193
- boolean
194
194
- If set, use the symbolizer to turn virtual addresses to file/line locations. If false, can greatly speed up the error reporting.
195
195
* - ``suppressions``
196
-
- ""
196
+
- ``""``
197
197
- path
198
-
- If set to a valid suppressions file, will suppress issue reporting. See details in "Disabling", below.
198
+
- If set to a valid suppressions file, will suppress issue reporting. See details in `Disabling and Suppressing`_.
199
199
200
200
201
201
Some issues with flags can be debugged using the ``verbosity=$NUM`` flag:
@@ -244,6 +244,7 @@ To register a callback which will be invoked before a RTSan kills the process:
0 commit comments