XINU
Functions
putc.c File Reference

デバイスへ文字1Byteを送信する。 More...

#include <xinu.h>
Include dependency graph for putc.c:

Go to the source code of this file.

Functions

syscall putc (did32 descrp, char ch)
 デバイスへ文字1Byteを送信する。 More...
 

Detailed Description

デバイスへ文字1Byteを送信する。

Definition in file putc.c.

Function Documentation

◆ putc()

syscall putc ( did32  descrp,
char  ch 
)

デバイスへ文字1Byteを送信する。

文字を書き込むputc()のextern宣言

Step1. 割り込みを禁止する。
Step2. デバイスディスクリプタが不正値の場合は、割り込み状態を復元し、処理を終了する。
Step3. デバイスに応じたputc()処理を行う。
Step4. 割り込み状態を復元する。

Parameters
[in]descrpデバイスディスクリプタ
[in]ch送信したい文字
Returns
成功時はデバイスに応じた返り値、デバイスディスクリプタが不正値の場合はSYSERRを返す。

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().

19 {
20  intmask mask; /* Saved interrupt mask */
21  struct dentry *devptr; /* Entry in device switch table */
22  int32 retval; /* Value to return to caller */
23 
24  mask = disable();
25  if (isbaddev(descrp))
26  {
27  restore(mask);
28  return SYSERR;
29  }
30  devptr = (struct dentry *)&devtab[descrp];
31  retval = (*devptr->dvputc)(devptr, ch);
32  restore(mask);
33  return retval;
34 }
void restore(intmask)
#define SYSERR
処理が失敗した場合
Definition: kernel.h:79
devcall(* dvputc)(struct dentry *, char)
Definition: conf.h:17
Definition: conf.h:6
struct dentry devtab[]
Definition: conf.c:11
uint32 intmask
保存された割り込みマスク
Definition: kernel.h:38
int int32
符号あり32ビット整数(int)
Definition: kernel.h:11
#define isbaddev(f)
デバイスIDを検証するマクロ。
Definition: device.h:15
intmask disable(void)
割り込み禁止(intr.Sに定義がある)
Here is the call graph for this function:
Here is the caller graph for this function: