오류 번호를 'errno' 상수로 변환하는 방법은 무엇입니까?

오류 번호를 'errno' 상수로 변환하는 방법은 무엇입니까?

시스템 오류 상태 '13'으로 인해 실패하는 UNIX 상자에서 실행 중인 응용 프로그램이 있다고 가정해 보겠습니다. 이제 errno.h에서 이 값을 쉽게 찾아 이것이 권한 거부 문제인지 확인할 수 있습니다.

> grep -w 13 /usr/include/errno.h
#define EACCES  13      /* Permission denied                    */

이 정보를 검색하는 더 간단한 명령이 있습니까? 나는 다음과 같은 것을 실행할 수 있기를 원합니다 :

> lookuperror 13
EACCES (Permission denied)

시스템 헤더 파일을 수집하는 대신. 그러한 명령/프로그램이 존재합니까?

업데이트: 아래 답변에서 지적했듯이 strerror()시스템 호출은 이 정보를 반환합니다. 이 시스템 호출을 수행하는 실행 가능한 유틸리티와 함께 ​​제공되는 UNIX 운영 체제가 있습니까? 아니면 이를 수행하려면 자체 프로그램을 작성해야 합니까?

답변1

나는 ~하곤 했다

perl -MPOSIX -e 'print strerror($ARGV[0])."\n";' 13

Perl 코드를 파일에 넣고 경로에 두기만 하면 됩니다.
물론 C로도 가능합니다

답변2

~% perror 13
OS error code  13:  Permission denied
~% rpm -qf =perror
mysql-server-5.0.45-7.el5

답변3

strerror(3)을 시도해 보십시오.

맨페이지에서:

DESCRIPTION

 The strerror(), strerror_r() and perror() functions look up the error
 message string corresponding to an error number.

 The strerror() function accepts an error number argument errnum and
 returns a pointer to the corresponding message string.

 The strerror_r() function renders the same result into strerrbuf for a
 maximum of buflen characters and returns 0 upon success.

 The perror() function finds the error message corresponding to the cur-
 rent value of the global variable errno (intro(2)) and writes it, fol-
 lowed by a newline, to the standard error file descriptor.  If the argu-
 ment string is non-NULL and does not point to the null character, this
 string is prepended to the message string and separated from it by a
 colon and space (``: ''); otherwise, only the error message string is
 printed.

 If the error number is not recognized, these functions return an error
 message string containing ``Unknown error: '' followed by the error num-
 ber in decimal.  The strerror() and strerror_r() functions return EINVAL
 as a warning.  Error numbers recognized by this implementation fall in
 the range 0 < errnum < sys_nerr.

 If insufficient storage is provided in strerrbuf (as specified in buflen)
 to contain the error string, strerror_r() returns ERANGE and strerrbuf
 will contain an error message that has been truncated and NUL terminated
 to fit the length specified by buflen.

 The message strings can be accessed directly using the external array
 sys_errlist.  The external value sys_nerr contains a count of the mes-
 sages in sys_errlist.  The use of these variables is deprecated;
 strerror() or strerror_r() should be used instead.

답변4

cpp -dM소스 또는 헤더 파일을 전처리하고 #define찾은 모든 파일을 인쇄합니다. 포함된 /usr/include/errno.h모든 파일을 가져오기 때문에 를 통해 파악하는 것보다 더 강력합니다 /usr/include/errno.h.

cpp -dM을 다른 사람의 제안과 결합:

function lookuperror
{
    cpp -dM /usr/include/errno.h | grep -w "$@"
    perl -MPOSIX -e 'print "Description:".strerror($ARGV[0])."\n";' $@
}

.bashrc에 삽입하거나 해당 내용을 독립형 쉘 스크립트로 배치하십시오.

관련 정보