mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-08 00:17:01 +00:00
Many of the license and Intel copyright headers include the "All rights reserved" string. It is not relevant in the context of the BSD-3-Clause license that the code is released under. This patch removes those strings throughout the code (hypervisor, devicemodel and misc). Tracked-On: #7254 Signed-off-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com>
34 lines
796 B
C
34 lines
796 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef ERRNO_H
|
|
#define ERRNO_H
|
|
|
|
/** Indicates that operation not permitted. */
|
|
#define EPERM 1
|
|
/** Indicates that there is IO error. */
|
|
#define EIO 5
|
|
/** Indicates that not enough memory. */
|
|
#define ENOMEM 12
|
|
/** Indicates Permission denied */
|
|
#define EACCES 13
|
|
/** Indicates there is fault. */
|
|
#define EFAULT 14
|
|
/** Indicates that target is busy. */
|
|
#define EBUSY 16
|
|
/** Indicates that no such dev. */
|
|
#define ENODEV 19
|
|
/** Indicates that argument is not valid. */
|
|
#define EINVAL 22
|
|
/** Indicates the operation is undefined. */
|
|
#define ENOTTY 25
|
|
/** Indicates the operation is obsoleted. */
|
|
#define ENOSYS 38
|
|
/** Indicates that timeout occurs. */
|
|
#define ETIMEDOUT 110
|
|
|
|
#endif /* ERRNO_H */
|