我想知道如果它返回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,我怎么知道呢?
@H_404_6@解决方法
我想正常的使用场景是,在一个线程中:
for (;;) { wait_event_interruptible(wait_queue,condition); /* Some processing */ }
并从其他一些线程:
if (something_happened) wake_up_interruptible(wait_queue);
这将导致一个进程从wait_queue进入,该进程处于TASK_INTERRUPTIBLE状态,被唤醒并评估条件
看一些更多的例子here,有点过时的位给出了一个想法
@H_404_6@ @H_404_6@ 原文链接:https://www.f2er.com/linux/393202.html