Home
last modified time | relevance | path

Searched refs:delayTime (Results 1 - 2 of 2) sorted by relevance

/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
H A Dworkqueue.h212 #define queue_delayed_work(wq, dwork, delayTime) \
213 linux_queue_delayed_work(wq, dwork, delayTime)
218 #define schedule_delayed_work(dwork, delayTime) \
219 linux_schedule_delayed_work(dwork, delayTime)
346 * <li>The work will be queued on the workqueue immediately if delayTime is 0, it as same as queue_work(). </li>
351 * @param delayTime [IN] Delayed time, number of ticks to wait or 0 for immediate execution.
362 extern bool linux_queue_delayed_work(struct workqueue_struct *wq, struct delayed_work *dwork, unsigned int delayTime);
402 * <li>The dwork will be queued on the workqueue immediately if delayTime is 0. </li>
406 * @param delayTime [IN] Delayed time, number of ticks to wait or 0 for immediate execution.
417 extern bool linux_schedule_delayed_work(struct delayed_work *dwork, unsigned int delayTime);
[all...]
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/
H A Dlinux_workqueue.c365 bool queue_delayed_work(struct workqueue_struct *wq, struct delayed_work *dwork, unsigned int delayTime) in queue_delayed_work() argument
375 if (delayTime == 0) { in queue_delayed_work()
393 dwork->timer.expires = delayTime; in queue_delayed_work()
517 bool linux_schedule_delayed_work(struct delayed_work *dwork, unsigned int delayTime) in linux_schedule_delayed_work() argument
525 ret = queue_delayed_work(g_pstSystemWq, dwork, delayTime); in linux_schedule_delayed_work()

Completed in 2 milliseconds