diff options
author | aw148015 <Andrew.W.Wilson@sun.com> | 2009-02-11 16:20:20 -0800 |
---|---|---|
committer | aw148015 <Andrew.W.Wilson@sun.com> | 2009-02-11 16:20:20 -0800 |
commit | a0b8f2d7676d6b7913f3ba65b3f9b28f37aaae71 (patch) | |
tree | f91b5ad2c092448fdb728ecba126a75f6a748a34 /usr/src/cmd/filebench/common/threadflow.c | |
parent | 4a7f2a75ca428b8c3910f76ab6cea0dfadba8914 (diff) | |
download | illumos-joyent-a0b8f2d7676d6b7913f3ba65b3f9b28f37aaae71.tar.gz |
6708797 mutex lock failed: Lock is not recoverable (fix lint)
Diffstat (limited to 'usr/src/cmd/filebench/common/threadflow.c')
-rw-r--r-- | usr/src/cmd/filebench/common/threadflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/cmd/filebench/common/threadflow.c b/usr/src/cmd/filebench/common/threadflow.c index 70e28dd218..9a6d96aceb 100644 --- a/usr/src/cmd/filebench/common/threadflow.c +++ b/usr/src/cmd/filebench/common/threadflow.c @@ -200,7 +200,7 @@ threadflow_kill(threadflow_t *threadflow) if (threadflow->tf_running) { threadflow->tf_running = FALSE; - pthread_kill(threadflow->tf_tid, SIGKILL); + (void) pthread_kill(threadflow->tf_tid, SIGKILL); } } |