Release 4.11 drivers/staging/dgnc/dgnc_utils.c
#include <linux/tty.h>
#include <linux/sched/signal.h>
#include "dgnc_utils.h"
/*
* dgnc_ms_sleep()
*
* Put the driver to sleep for x ms's
*
* Returns 0 if timed out, !0 (showing signal) if interrupted by a signal.
*/
int dgnc_ms_sleep(ulong ms)
{
__set_current_state(TASK_INTERRUPTIBLE);
schedule_timeout((ms * HZ) / 1000);
return signal_pending(current);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Konrad Zapalowicz | 27 | 90.00% | 1 | 50.00% |
Davidlohr Bueso A | 3 | 10.00% | 1 | 50.00% |
Total | 30 | 100.00% | 2 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Konrad Zapalowicz | 36 | 90.00% | 1 | 33.33% |
Davidlohr Bueso A | 3 | 7.50% | 1 | 33.33% |
Ingo Molnar | 1 | 2.50% | 1 | 33.33% |
Total | 40 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.