__wake_up喚醒等待隊列中的進程

等待隊列頭 struct __wait_queue_head  {      spinlock_t lock; //自旋鎖用於保護自身資源(task_list鏈表)不被多個進程同時訪問      struct list_head task_list;//雙向循環鏈表通過此字段連接成等待對列鏈表 }; typedef struct __wait_queue_head wait_queue_head_
相關文章
相關標籤/搜索