XINU
|
デバイスへ文字1Byteを送信する。 More...
#include <xinu.h>
Go to the source code of this file.
Functions | |
syscall | putc (did32 descrp, char ch) |
デバイスへ文字1Byteを送信する。 More... | |
デバイスへ文字1Byteを送信する。
Definition in file putc.c.
デバイスへ文字1Byteを送信する。
文字を書き込むputc()のextern宣言
Step1. 割り込みを禁止する。
Step2. デバイスディスクリプタが不正値の場合は、割り込み状態を復元し、処理を終了する。
Step3. デバイスに応じたputc()処理を行う。
Step4. 割り込み状態を復元する。
[in] | descrp | デバイスディスクリプタ |
[in] | ch | 送信したい文字 |
Definition at line 18 of file putc.c.
References devtab, disable(), dentry::dvputc, isbaddev, restore(), and SYSERR.
Referenced by fprintf(), fputc(), fputs(), printf(), and xsh_cat().