tty_reply - mathfur/minix GitHub Wiki

呼出元

dev_ioctl

概要

  • drivers/tty/tty.cにて定義
  • replyeeにsend(TASK_REPLY, ..)もしくはsend(REVICE,..)する

引数

int code;			/* TASK_REPLY or REVIVE */
int replyee;			/* destination address for the reply */
int proc_nr;			/* to whom should the reply go? */
int status;			/* reply code */

実装

コメント