 |
no-OS
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
34#ifndef _NO_OS_ERROR_H_
35#define _NO_OS_ERROR_H_
39#ifndef __NO_OS_ELASTERROR
40#define __NO_OS_ELASTERROR 2000
43#define NO_OS_EOVERRUN (__NO_OS_ELASTERROR + 1)
46#define NO_OS_IS_ERR_VALUE(x) ((x) < 0)
47#define NO_OS_IS_ERR(x) (NO_OS_IS_ERR_VALUE((unsigned long)x))
48#define NO_OS_PTR_ERR(x) ((long)x)
49#define NO_OS_ERR_CAST(x) ((void *) x)