Change the sleep identifier to "-" where random normally sleeps.

This commit is contained in:
Poul-Henning Kamp 2003-07-02 08:04:57 +00:00
parent d94e36521e
commit 68c2a41e6c

View file

@ -327,7 +327,7 @@ random_kthread(void *arg __unused)
if ((harvestring.tail == harvestring.head) ||
(random_systat.burst && burst == random_systat.burst)) {
tsleep(&harvestring, PUSER, "sleep", hz/10);
tsleep(&harvestring, PUSER, "-", hz/10);
burst = 0;
}