diff options
author | Valentin Bartenev <vbart@nginx.com> | 2018-07-27 17:52:21 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2018-07-27 17:52:21 +0300 |
commit | 4b67de4bbb7f7cc6e1337ab9b7479695fd068b74 (patch) | |
tree | ddbdcdd46074925b7ab428ff58fe26cc5a6ab257 /src/nxt_thread.c | |
parent | 12c890c1ca09bdd77fd653d247b13f1c22ea3f0a (diff) | |
download | unit-4b67de4bbb7f7cc6e1337ab9b7479695fd068b74.tar.gz unit-4b67de4bbb7f7cc6e1337ab9b7479695fd068b74.tar.bz2 |
Removed implicit call of nxt_thread() in nxt_thread_tid().
Explicit is better than implicit © The Zen of Python.
The nxt_thread_tid(NULL) call was used only twice in the code
and such behaviour was specific to nxt_thread_tid() function.
Diffstat (limited to 'src/nxt_thread.c')
-rw-r--r-- | src/nxt_thread.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nxt_thread.c b/src/nxt_thread.c index 72429f4d..f3804719 100644 --- a/src/nxt_thread.c +++ b/src/nxt_thread.c @@ -242,10 +242,6 @@ nxt_thread_wait(nxt_thread_handle_t handle) nxt_tid_t nxt_thread_tid(nxt_thread_t *thr) { - if (thr == NULL) { - thr = nxt_thread(); - } - #if (NXT_HAVE_THREAD_STORAGE_CLASS) if (nxt_slow_path(thr->tid == 0)) { |