linux-kernel – 如何使用wake_up_interruptible

前端之家收集整理的这篇文章主要介绍了linux-kernel – 如何使用wake_up_interruptible前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道如果它返回void,我怎么能使用wake_up_interruptible: http://www.cs.fsu.edu/~baker/devices/lxr/http/source/linux/include/linux/wait.h#L161(_wake_up函数返回void).例如,down_interruptible函数返回int: http://www.cs.fsu.edu/~baker/devices/lxr/http/source/linux/kernel/semaphore.c#L75这允许编写这样的代码,例如:
if ( down_interruptible(&dev->sem) )
    return -ERESTARTSYS;
// continue: down_interruptible succeeded

当我调用wake_up_interruptible并且它被中断时,如果它返回void,我怎么知道呢?

解决方法

我想正常的使用场景是,在一个线程中:
for (;;) {
   wait_event_interruptible(wait_queue,condition);
   /* Some processing */
}

并从其他一些线程:

if (something_happened)
   wake_up_interruptible(wait_queue);

这将导致一个进程从wait_queue进入,该进程处于TASK_INTERRUPTIBLE状态,被唤醒并评估条件

看一些更多的例子here,有点过时的位给出了一个想法

原文链接:https://www.f2er.com/linux/393202.html

猜你在找的Linux相关文章