errno的一些错误定义

2023-05-16

#define EPERM 1 /* Operation not permitted */
  #define ENOENT 2 /* No such file or directory */
  #define ESRCH 3 /* No such process */
  #define EINTR 4 /* Interrupted system call */
  #define EIO 5 /* I/O error */
  #define ENXIO 6 /* No such device or address */
  #define E2BIG 7 /* Argument list too long */
  #define ENOEXEC 8 /* Exec format error */
  #define EBADF 9 /* Bad file number */
  #define ECHILD 10 /* No child processes */
  #define EAGAIN 11 /* Try again */
  #define ENOMEM 12 /* Out of memory */
  #define EACCES 13 /* Permission denied */
  #define EFAULT 14 /* Bad address */
  #define ENOTBLK 15 /* Block device required */
  #define EBUSY 16 /* Device or resource busy */
  #define EEXIST 17 /* File exists */
  #define EXDEV 18 /* Cross-device link */
  #define ENODEV 19 /* No such device */
  #define ENOTDIR 20 /* Not a directory */
  #define EISDIR 21 /* Is a directory */
  #define EINVAL 22 /* Invalid argument */
  #define ENFILE 23 /* File table overflow */
  #define EMFILE 24 /* Too many open files */
  #define ENOTTY 25 /* Not a typewriter */
  #define ETXTBSY 26 /* Text file busy */
  #define EFBIG 27 /* File too large */
  #define ENOSPC 28 /* No space left on device */
  #define ESPIPE 29 /* Illegal seek */
  #define EROFS 30 /* Read-only file system */
  #define EMLINK 31 /* Too many links */
  #define EPIPE 32 /* Broken pipe */
  #define EDOM 33 /* Math argument out of domain of func */
  #define ERANGE 34 /* Math result not representable */
  #define EDEADLK 35 /* Resource deadlock would occur */
  #define ENAMETOOLONG 36 /* File name too long */
  #define ENOLCK 37 /* No record locks available */
  #define ENOSYS 38 /* Function not implemented */
  #define ENOTEMPTY 39 /* Directory not empty */
  #define ELOOP 40 /* Too many symbolic links encountered */
  #define EWOULDBLOCK EAGAIN /* Operation would block */
  #define ENOMSG 42 /* No message of desired type */
  #define EIDRM 43 /* Identifier removed */
  #define ECHRNG 44 /* Channel number out of range */
  #define EL2NSYNC 45 /* Level 2 not synchronized */
  #define EL3HLT 46 /* Level 3 halted */
  #define EL3RST 47 /* Level 3 reset */
  #define ELNRNG 48 /* Link number out of range */
  #define EUNATCH 49 /* Protocol driver not attached */
  #define ENOCSI 50 /* No CSI structure available */
  #define EL2HLT 51 /* Level 2 halted */
  #define EBADE 52 /* Invalid exchange */
  #define EBADR 53 /* Invalid request descriptor */
  #define EXFULL 54 /* Exchange full */
  #define ENOANO 55 /* No anode */
  #define EBADRQC 56 /* Invalid request code */
  #define EBADSLT 57 /* Invalid slot */
  #define EDEADLOCK EDEADLK
  #define EBFONT 59 /* Bad font file format */
  #define ENOSTR 60 /* Device not a stream */
  #define ENODATA 61 /* No data available */
  #define ETIME 62 /* Timer expired */
  #define ENOSR 63 /* Out of streams resources */
  #define ENONET 64 /* Machine is not on the network */
  #define ENOPKG 65 /* Package not installed */
  #define EREMOTE 66 /* Object is remote */
  #define ENOLINK 67 /* Link has been severed */
  #define EADV 68 /* Advertise error */
  #define ESRMNT 69 /* Srmount error */
  #define ECOMM 70 /* Communication error on send */
  #define EPROTO 71 /* Protocol error */
  #define EMULTIHOP 72 /* Multihop attempted */
  #define EDOTDOT 73 /* RFS specific error */
  #define EBADMSG 74 /* Not a data message */
  #define EOVERFLOW 75 /* Value too large for defined data type */
  #define ENOTUNIQ 76 /* Name not unique on network */
  #define EBADFD 77 /* File descriptor in bad state */
  #define EREMCHG 78 /* Remote address changed */
  #define ELIBACC 79 /* Can not access a needed shared library */
  #define ELIBBAD 80 /* Accessing a corrupted shared library */
  #define ELIBSCN 81 /* .lib section in a.out corrupted */
  #define ELIBMAX 82 /* Attempting to link in too many shared libraries */
  #define ELIBEXEC 83 /* Cannot exec a shared library directly */
  #define EILSEQ 84 /* Illegal byte sequence */
  #define ERESTART 85 /* Interrupted system call should be restarted */
  #define ESTRPIPE 86 /* Streams pipe error */
  #define EUSERS 87 /* Too many users */
  #define ENOTSOCK 88 /* Socket operation on non-socket */
  #define EDESTADDRREQ 89 /* Destination address required */
  #define EMSGSIZE 90 /* Message too long */
  #define EPROTOTYPE 91 /* Protocol wrong type for socket */
  #define ENOPROTOOPT 92 /* Protocol not available */
  #define EPROTONOSUPPORT 93 /* Protocol not supported */
  #define ESOCKTNOSUPPORT 94 /* Socket type not supported */
  #define EOPNOTSUPP 95 /* Operation not supported on transport endpoint */
  #define EPFNOSUPPORT 96 /* Protocol family not supported */
  #define EAFNOSUPPORT 97 /* Address family not supported by protocol */
  #define EADDRINUSE 98 /* Address already in use */
  #define EADDRNOTAVAIL 99 /* Cannot assign requested address */
  #define ENETDOWN 100 /* Network is down */
  #define ENETUNREACH 101 /* Network is unreachable */
  #define ENETRESET 102 /* Network dropped connection because of reset */
  #define ECONNABORTED 103 /* Software caused connection abort */
  #define ECONNRESET 104 /* Connection reset by peer */
  #define ENOBUFS 105 /* No buffer space available */
  #define EISCONN 106 /* Transport endpoint is already connected */
  #define ENOTCONN 107 /* Transport endpoint is not connected */
  #define ESHUTDOWN 108 /* Cannot send after transport endpoint shutdown */
  #define ETOOMANYREFS 109 /* Too many references: cannot splice */
  #define ETIMEDOUT 110 /* Connection timed out */
  #define ECONNREFUSED 111 /* Connection refused */
  #define EHOSTDOWN 112 /* Host is down */
  #define EHOSTUNREACH 113 /* No route to host */
  #define EALREADY 114 /* Operation already in progress */
  #define EINPROGRESS 115 /* Operation now in progress */
  #define ESTALE 116 /* Stale NFS file handle */
  #define EUCLEAN 117 /* Structure needs cleaning */
  #define ENOTNAM 118 /* Not a XENIX named type file */
  #define ENAVAIL 119 /* No XENIX semaphores available */
  #define EISNAM 120 /* Is a named type file */
  #define ENOKEY 126 /* Required key not available */
  #define EKEYEXPIRED 127 /* Key has expired */
  #define EKEYREVOKED 128 /* Key has been revoked */
  #define EKEYREJECTED 129 /* Key was rejected by service */
  #define EOWNERDEAD 130 /* Owner died */
  #define ENOTRECOVERABLE 131 /* State not recoverable */
  #define ERFKILL 132 /* Operation not possible due to RF-kill */
  #define EHWPOISON 133 /* Memory page has hardware error */
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

errno的一些错误定义 的相关文章

  • 技术面面试高频考点总结-Redis篇

    文章目录 技术面面试高频考点总结 Redis篇一 Redis常考考点枚举二 Redis推荐学习资料三 小结 技术面面试高频考点总结 Redis篇 大家好呀 xff0c 这里是小黛 xff01 Redis是目前非常火的 xff0c 完全开源的

随机推荐

  • HR面与反问环节考点总结

    文章目录 HR面与反问环节考点总结1 HR面1 1 HR面的重要性与注意事项1 2 HR面常考问题枚举 2 反问2 1 反问是什么2 2 反问都问些什么 小结题外话 HR面与反问环节考点总结 大家好呀 xff0c 这里是小黛 xff01 本
  • 技术面面试高频考点总结-Linux篇

    技术面面试高频考点总结 Linux篇 大家好呀 xff0c 这里是小黛 xff01 Linux是一种类Unix操作系统 xff0c 是由芬兰的林纳斯 托瓦兹 xff08 Linus Torvalds xff09 在1991年首次发布 Lin
  • 技术面面试高频考点总结-操作系统篇

    技术面面试高频考点总结 操作系统篇 文章目录 技术面面试高频考点总结 操作系统篇一 操作系统必考考点列举二 操作系统推荐学习资料三 小结题外话 大家好呀 xff0c 这里是小黛 xff01 操作系统也是在面试中必考的内容 xff0c 那今天
  • 面试高频考点总结-云原生、微服务、K8s、分布式

    文章目录 技术面面试高频考点总结 云原生篇一 云原生简介二 云原生面试考题列举三 小结题外话 技术面面试高频考点总结 云原生篇 大家好呀 xff0c 这里是小黛 xff01 之前的文章呀 xff0c 也介绍了大部分计算机基础相关的八股文 x
  • 技术面面试高频考点总结-JAVA篇

    文章目录 技术面面试高频考点总结 JAVA篇一 Java基础二 JVM三 并发四 框架五 小结题外话 技术面面试高频考点总结 JAVA篇 大家好呀 xff0c 这里是小黛 xff01 今天呀 xff0c 来介绍大家最喜欢的Java篇 xff
  • 视图绑定【android jetpack】

    视图绑定 视图绑定 是通过对xml属性转化为对应的绑定类 会对xml布局中所有的具有id属性的组件创建直接的引用 视图绑定 与 传统的findviewbyid 视图绑定 xff1a 是对id属性组件的直接引用 相当于只要组件只要有了id属性
  • NLTK语料库下载

    仓库地址 https github com Trkly NLTK DATA 希望能够帮到大家并希望大家给个star 语料库的存放位置参考如下图
  • Manjaro入坑

    Manjaro入坑 没有技术还偏偏就是喜欢瞎折腾 xff0c 没错 xff0c 说的就是我 xff01 大一的时候装过 Ubuntu 43 Win10 以及 CentOS7 8 43 Win10 的双操作系统 xff0c 后来因为一些日常软
  • android 监听手机电量变化

    今天 xff0c 简单讲讲如何监听手机电量的变化 监听电量是不能静态注册的 后来上网搜索 xff0c 发现有五个不能静态注册的广播 xff0c 这里记录一下 xff0c 免得下次再后知后觉的发现并惊讶于自己的笨拙 不能静态注册的广播 and
  • 【笔记】libpcap安装与使用

    Ubuntu 20 04 文章目录 起步一 下载libpcap 库二 安装三 使用 完整程序 们 1 头文件集锦myheader h 2 打印报文内容sniff c 3 嗅探与伪造icmpspoof c 附加内容unmask 0 共享内存报
  • 2022基于Anaconda环境下Jupyter最全安装插件及配置相关知识及踩坑指南

    2022Jupyter 43 Anaconda最全安装相关知识及踩坑指南 一 简介1 概述2 下载网址以及参考文档3 优点 二 安装使用过程1 起始2 更改存储路径 xff08 踩坑 xff08 1 xff09 xff09 2 1 使用管理
  • 微信小程序整合WebScoket部署上线

    微信小程序整合WebScoket部署上线 在部署的服务器 中安装nginx xff0c 并作出如下配置 xff1a 思路 xff1a 此处监听的是外部的443端口和xcxapi wfeifei com域名 xff0c 当通过该域名和端口号进
  • Vue(v-show简介)

    v show简介 1 v show指令的作用是 xff1a 根据切换元素的显示状态 2 原理是修改元素 的display xff0c 实现显示隐藏 3 指令后面的内容 xff0c 最终都会解析为布尔值 4 值为true元素显示 xff0c
  • 使用python编写adb脚本实现自动化测试

    使用python编写adb脚本实现自动化测试 前言一 python与adb二 使用步骤1 基本原理2 方法1 xff1a 使用os system 函数实现2 方法2 xff1a 使用os popen 函数实现2 方法3 xff1a 使用su
  • 怎么在jupyter中安装tensorflow,并切换环境为tensorflow

    首先说一下遇到的问题是如下 xff08 前提是已经安装anaconda xff09 xff1a 一 进入jupyter打开终端 在cmd中输入jupyter notebook进入jupyter xff1a 然后进入终端 xff1a 进入之后
  • selenium 自动化测试

    selenium 是最广泛使用的开源Web UI xff08 用户界面 xff09 自动化测试套件之一 selenium测试脚本可以使用任何支持的编程语言进行编码 xff0c 并且可以直接在大多数现代Web浏览器中运行 在爬虫领域selen
  • 1.spring框架-----spring framework bean基础配置 bean生命周期

    目录 一 spring framework 1 IoC控制反转 Inversion of Control 2 DI依赖注入 Dependency Injection 3 bean基础配置 4 bean实例化 4 1构造方法 4 2静态工厂
  • 华为FusionCompute资源配置

    文章目录 前言主机配置添加主机网口绑定 网络资源配置创建DVS添加上行链路添加VLAN池创建端口组 存储资源配置添加存储接口添加存储资源 前言 在上一篇文章 xff1a 在VMware Workstation和云服务器上安装华为Fusion
  • 【无标题】javaweb文件上传与下载

    构建数据库filetest xff1a 包含文件名称及路径 SET FOREIGN KEY CHECKS 61 0 Table structure for file DROP TABLE IF EXISTS 96 file 96 CREAT
  • errno的一些错误定义

    define EPERM 1 Operation not permitted define ENOENT 2 No such file or directory define ESRCH 3 No such process define E