diff options
Diffstat (limited to 'usr/src/uts/common/os/sig.c')
-rw-r--r-- | usr/src/uts/common/os/sig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/os/sig.c b/usr/src/uts/common/os/sig.c index 763214a60d..932b4db606 100644 --- a/usr/src/uts/common/os/sig.c +++ b/usr/src/uts/common/os/sig.c @@ -1240,8 +1240,8 @@ utstop_timedwait(clock_t ticks) { mutex_enter(&thread_stop_lock); if (num_utstop > 0) - (void) cv_timedwait(&utstop_cv, &thread_stop_lock, - ticks + lbolt); + (void) cv_reltimedwait(&utstop_cv, &thread_stop_lock, ticks, + TR_CLOCK_TICK); mutex_exit(&thread_stop_lock); } |