Skip to content

Commit 9df93e4

Browse files
mvdanheschi
authored andcommitted
doc: document atexit_sleep_ms flag in race_detector
It was pointed out to me that the thread sanitizer library has many more flags than the ones documented in this doc page. In particular, I was able to make use of GORACE=atexit_sleep_ms=10 to reduce the amount that 'go test -race' will sleep before finishing. I'm sure that this flag will be useful to others in the future, so add it here. This is still not a complete list, but we can simply add useful flags that work when we think they deserve a mention. Change-Id: If199d36fd80a0945af90055d110519e5dba27361 Reviewed-on: https://go-review.googlesource.com/c/go/+/200863 Reviewed-by: Heschi Kreinick <[email protected]>
1 parent 6bcddae commit 9df93e4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

doc/articles/race_detector.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,11 @@ <h2 id="Options">Options</h2>
133133
<code>halt_on_error</code> (default <code>0</code>): Controls whether the program
134134
exits after reporting first data race.
135135
</li>
136+
137+
<li>
138+
<code>atexit_sleep_ms</code> (default <code>1000</code>): Amount of milliseconds
139+
to sleep in the main goroutine before exiting.
140+
</li>
136141
</ul>
137142

138143
<p>

0 commit comments

Comments
 (0)