码迷,mamicode.com
首页 >  
搜索关键字:errno strerror    ( 1034个结果
errno之我见
Errno能帮我们找到系统函数的错误信息。比如open函数,如果正常返回时,其返回值是一个非负的整数。异常时会返回-1,同时该系统函数会设置errno的值,让我们可以了解错误的原因。   Errno的正确用法是,首先要明确系统函数调用异常(比如返回-1或NULL),然后再去判断errno的值。我们不能直接去判断errno的值来断定系统函数调用是否发生了一场。因为errno值是不会被清零,它只是...
分类:其他好文   时间:2014-12-23 12:24:30    阅读次数:114
搭建git服务器
1.下载gitosis代码出错 git clone git://eagain.net/gitosis.git Initialized empty Git repository in /tmp/gitosis/.git/ eagain.net[0: 50.56.185.182]: errno=Connection refused fatal: unable to connect a socke...
分类:其他好文   时间:2014-12-19 09:18:31    阅读次数:138
Python——errno
该模块实现标准的errno系统符号,每一个对应于一个整数,名称和描述借鉴了linux/include/errno.h。errno.errorcodeDictionary providing a mapping from theerrnovalue to the string name in th.....
分类:编程语言   时间:2014-12-17 20:12:41    阅读次数:267
打印man手册为pdf文件
只需要一个命令就可以了!merlin@tfAnalysis:~/projects/tfadc$ man -t errno | ps2pdf - ~/errno.pdf输出的文件很漂亮。
分类:其他好文   时间:2014-12-16 22:30:53    阅读次数:185
Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT.
一.问题描述 : 014-12-15 20:00:29 4398 [Warning] Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. INSERT... ON DUPLICATE KEY UPDATE  on a table with more t Last_SQL_Errno: 1666 Last_SQL_Error: Erro...
分类:其他好文   时间:2014-12-15 21:47:48    阅读次数:216
socket在windows下和linux下的区别
原文: socket在windows下和linux下的区别 1)头文件windows下winsock.h/winsock2.hlinux下sys/socket.h 错误处理:errno.h2)初始化windows下需要用WSAStartup WSADATA wsaData; err =WSAStar...
分类:Windows程序   时间:2014-12-12 16:16:56    阅读次数:210
window上mongodb错误:No connection could be made
今天在慕课网(很不错的一个IT技术免费网站)上学习nodeJS开发电影网站,其中使用到了mongo数据库,但是在执行中遇到了如下错误! Failed to connect to 127.0.0.1:27017, reason: errno:10061 No connection could be made because the target machine actively ref...
分类:数据库   时间:2014-12-11 12:21:26    阅读次数:232
Why does yum return error: [Errno 256] No more mirrors to try ?
https://access.redhat.com/solutions/203603ISSUEyum update fails with the error : [Errno 256] No more mirrors to tryyum update fails with :-Error Downl...
分类:其他好文   时间:2014-12-10 16:01:13    阅读次数:324
linux c 系统报错
本文中的错误是指在代码编译完全正确程序可运行的情况下,因为没有成功调用程序中的某些系统调用函数而产生的错误。往往这些系统调用函数通过返回值(比如1,0,-1)来说明其是否调用成功,而程序员需要知道详细的错误信息,因此自建错误捕获函数很有必要。(1)errno和strerror()errno它是一个整...
分类:系统相关   时间:2014-12-09 15:35:55    阅读次数:208
socket 例子
socket.php<?phperror_reporting(E_ALL);set_time_limit(0);//ob_implicit_flush();$address=‘127.0.0.1‘;$port=10005;//创建端口if(($sock=socket_create(AF_INET,SOCK_STREAM,SOL_TCP))===false){echo"socket_create()failed:reason:".socket_strerror(socket_last_error(..
分类:其他好文   时间:2014-12-06 06:46:28    阅读次数:179
1034条   上一页 1 ... 91 92 93 94 95 ... 104 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!