XINU
Functions
ioerr.c File Reference

ステータスとしてエラーを返す(デバイステーブルの"error"エントリに対して使用する) More...

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

Go to the source code of this file.

Functions

devcall ioerr (void)
 ステータスとしてエラーを返す(デバイステーブルの"error"エントリに対して使用する)。 More...
 

Detailed Description

ステータスとしてエラーを返す(デバイステーブルの"error"エントリに対して使用する)

Definition in file ioerr.c.

Function Documentation

◆ ioerr()

devcall ioerr ( void  )

ステータスとしてエラーを返す(デバイステーブルの"error"エントリに対して使用する)。

Returns
SYSERRを返す。

Definition at line 12 of file ioerr.c.

References SYSERR.

13 {
14  return SYSERR;
15 }
#define SYSERR
処理が失敗した場合
Definition: kernel.h:79