Looking at the handful of uses that do check the exit status, I'm also
not sure about what is the proper way to use schedule_timeout() to
guarantee a delay of a certain duration. Am I right that the
following is kosher?
do {
current->state = TASK_INTERRUPTIBLE;
timeout = schedule_timeout(timeout);
} while (timeout);
current->state = TASK_RUNNING;
-- Dave Hinds
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/