libmetal
Loading...
Searching...
No Matches
errno.h
Go to the documentation of this file.
1/*-
2 * Copyright (c) 2020 STMicroelectronics. All rights reserved.
3 *
4 * Copyright (c) 1982, 1986, 1989, 1993
5 * The Regents of the University of California. All rights reserved.
6 * (c) UNIX System Laboratories, Inc.
7 *
8 * SPDX-License-Identifier: BSD-3-Clause
9 */
10
11#ifndef __METAL_ARMCC_ERRNO__H__
12#define __METAL_ARMCC_ERRNO__H__
13
14#include <errno.h>
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20#define LIBMETAL_ERR_BASE 100
21
22#define EPERM (LIBMETAL_ERR_BASE + 1) /* Operation not permitted */
23#define ENOENT (LIBMETAL_ERR_BASE + 2) /* No such file or directory */
24#define ESRCH (LIBMETAL_ERR_BASE + 3) /* No such process */
25#define EINTR (LIBMETAL_ERR_BASE + 4) /* Interrupted system call */
26#define EIO (LIBMETAL_ERR_BASE + 5) /* Input/output error */
27#define ENXIO (LIBMETAL_ERR_BASE + 6) /* Device not configured */
28#define E2BIG (LIBMETAL_ERR_BASE + 7) /* Argument list too long */
29#define ENOEXEC (LIBMETAL_ERR_BASE + 8) /* Exec format error */
30#define EBADF (LIBMETAL_ERR_BASE + 9) /* Bad file descriptor */
31#define ECHILD (LIBMETAL_ERR_BASE + 10) /* No child processes */
32#define EDEADLK (LIBMETAL_ERR_BASE + 11) /* Resource deadlock avoided */
33#define EACCES (LIBMETAL_ERR_BASE + 13) /* Permission denied */
34#define EFAULT (LIBMETAL_ERR_BASE + 14) /* Bad address */
35#define ENOTBLK (LIBMETAL_ERR_BASE + 15) /* Block device required */
36#define EBUSY (LIBMETAL_ERR_BASE + 16) /* Device busy */
37#define EEXIST (LIBMETAL_ERR_BASE + 17) /* File exists */
38#define EXDEV (LIBMETAL_ERR_BASE + 18) /* Cross-device link */
39#define ENODEV (LIBMETAL_ERR_BASE + 19) /* Operation not supported by device */
40#define ENOTDIR (LIBMETAL_ERR_BASE + 20) /* Not a directory */
41#define EISDIR (LIBMETAL_ERR_BASE + 21) /* Is a directory */
42#define ENFILE (LIBMETAL_ERR_BASE + 23) /* Too many open files in system */
43#define EMFILE (LIBMETAL_ERR_BASE + 24) /* Too many open files */
44#define ENOTTY (LIBMETAL_ERR_BASE + 25) /* Inappropriate ioctl for device */
45#define ETXTBSY (LIBMETAL_ERR_BASE + 26) /* Text file busy */
46#define EFBIG (LIBMETAL_ERR_BASE + 27) /* File too large */
47#define ENOSPC (LIBMETAL_ERR_BASE + 28) /* No space left on device */
48#define ESPIPE (LIBMETAL_ERR_BASE + 29) /* Illegal seek */
49#define EROFS (LIBMETAL_ERR_BASE + 30) /* Read-only filesystem */
50#define EMLINK (LIBMETAL_ERR_BASE + 31) /* Too many links */
51#define EPIPE (LIBMETAL_ERR_BASE + 32) /* Broken pipe */
52#define EAGAIN (LIBMETAL_ERR_BASE + 35) /* Resource temporarily unavailable */
53
54#ifdef __cplusplus
55}
56#endif
57
58#endif /* __METAL_ARMCC_ERRNO__H__ */