1.建立等待队列
在include/linux/completion.h中对completion的定义如下
struct completion
{ unsigned int done;
wait_queue_head_t wait;
};
其中wait就是一个等待队列头的建立。
定义方法:struct completion myWait;
可使用空定义定义:DECLARE_COMPLETION(myWait)
2.初始化等待队列头
在include/linux/completion.h中对init_completion的定义如下
static inline void init_completion(struct completion *x)
{ x->done = 0;
init_waitqueue_head(&x->wait); }
即可使用该函数初始化第一步定义的队列:init_completion(&myWait)
3.等待
可以调用下列函数进行等待
wait_for_completion(struct completion *);
wait_for_completion_interruptible(struct completion *x);
wait_for_completion_timeout(struct completion *x, unsigned long timeout);
wait_for_completion_interruptible_timeout( struct completion *x, unsigned long timeout);
以上函数最终会调用do_wait_for_common(struct completion *x, long timeout, int state)
在该函数中会建立一个等待队列,并将该队列加入completion中定义的等待队列头中后,进入等待。
4.唤醒
可以使用下列函数唤醒在等待的进程
void complete(struct completion *);
void complete_all(struct completion *);
在以上函数中会调用__wake_up_common(wait_queue_head_t *q, unsigned int mode,4483 int nr_exclusive, int wake_flags, void *key)
来唤醒在completion中等待的进程。
Linux源码分析:completion的解读:http://www.linuxdiyf.com/linux/4558.html