Sign in
chromium
/
external
/
github.com
/
google
/
error-prone
/
refs/heads/copybara-sync
/
.
/
docs
/
bugpattern
/
DeadThread.md
blob: b01dfa36e925f950410ffd7a060d4f679d7f6931 [
file
] [
log
] [
blame
] [
view
] [
edit
]
The
Thread
is
created
with
`new`
,
but
is
never started
and
is
not
otherwise
captured
.
Threads
must be started
with
`start()`
to actually execute
.