Linux裝置驅動中的非同步作業

來源:互聯網
上載者:User
首先,開啟目標裝置。
第二,設定好目標裝置的SIGIO訊號處理常式。
第三,需要通過fcntl系統調用,使當前進程變成檔案的主人。(這樣才能使檔案中的訊號
發到當前進程)
第四,通過ioctl系統調用,將目標通道設定成非同步作業模式。

在驅動程式的fops中,有一個函數
    int (*fasync)(int fd, struct file * file, int on);

在系統調用sys_ioctl的時候,會調用上面的fasync函數。

例如,滑鼠器的
int fasync_aux(int fd, struct file * filp, int on)
{
    int retval;

    retval = fasync_helper(fd, filp, on, &queue->fasync);
    if (retval < 0)
        return retval;
    return 0;
}

這裡的queue類似於(struct mydev *)filp->private_data,fasync則是裡面的一個fasyn
c隊列。
fasync_helper的作用是為當前進程建立一個fasync_struct資料結構,然後掛入目標裝置
的fasync隊列。

然後,在目標裝置的常規驅動處理常式中,向該隊列發送訊號。

例如,滑鼠磁碟機的
void handle_mouse_event(unsigned char scancode)(這類似於usb驅動中的int urb,一
個回呼函數)
{
    ......
    kill_fasync(&queue->fasync, SIGIO, POLL_IN);
    ......
}

即向每一個登記的進程發送SIGIO訊號。
 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.