strerror()—返回错误原因的描述字符串

头文件:#include

定义函数:char * strerror(int errnum);

函数说明:strerror()用来依参数errnum 的错误代码来查询其错误原因的描述字符串, 然后将该字符串指针返回.

返回值:返回描述错误原因的字符串指针.


范例1:

#include

#include

#include   //exit

#include


pthread_t  tid;

int

main(int argc,char **argv)

{

     int ret;

    if((ret = pthread_create(&tid, NULL, mythread, NULL) )!= 0 )
    {
        printf("failed to creat thread: %s\n",strerror(ret));
        exit(-1);
    }

.......

}


范例2:
/* 显示错误代码0 至9 的错误原因描述 */
#include
main()
{
    int i;
    for(i = 0; i < 10; i++)
    printf("%d : %s\n", i, strerror(i));
}
执行:
0 : Success
1 : Operation not permitted
2 : No such file or directory
3 : No such process
4 : Interrupted system call
5 : Input/output error
6 : Device not configured
7 : Argument list too long
8 : Exec format error

9 : Bad file descriptor



你可能感兴趣的:(编程语言--c)