Linux错误处理

1.1 错误处理

Linux许多系统调用会因为某种原因而失败,它们会在失败时设置外部变量errno的值来指明失败的原因,程序必须在函数报告出错时立刻检查errno变量,它可能被下一个函数调用所覆盖。许多函数库都把这个变量用作报告错误的标准方法。
错误代码的宏定义在头文件errno-base.h中

/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
#ifndef _ASM_GENERIC_ERRNO_BASE_H
#define _ASM_GENERIC_ERRNO_BASE_H

#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 */

#endif

1.2 报告错误的函数

strerror函数把错误代码errno映射为一个字符串,该字符串对发生的错误类型进行说明。

#include <string.h>
char* strerror(int errnum);

在这里插入图片描述
在这里插入图片描述
perror函数也把errno映射到一个字符串,把它输出到标准错误输出流,该字符串前面先加上该字符串,再加上冒号和一个空格

#include <stdio.h>
void perror(const char* s)

在这里插入图片描述
在这里插入图片描述

1.2 文件流错误

通过检查文件流的状态来确定是否发生了错误,或者是否到达了文件尾。

#include <stdio.h>
int ferror(FILE* stream);
int feof(FILE* stream);
void clearerr(FILE* stream);
int fileno(FILE* stream);

ferror函数测试文件流的错误标识,若发生错误则返回非零值,否则返回0。
feof函数测试文件流的文件尾标识,若到达文件尾则返回非零值,否则返回0。
clearerr函数用来清除由stream指向的文件流的尾标识和错误标识。
fileno函数用来获取文件流stream对应的底层文件描述符,失败时返回-1,成功时返回底层的文件描述符。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值