码迷,mamicode.com
首页 >  
搜索关键字:errno strerror    ( 1034个结果
使用andbug的monitor命令
因为我们从github克隆下来的代码,配置是按照原来的用户名配置的,所以在使用andbug的monitor命令的时候,报错:## IOError: [Errno 2] No such file or directory: ?? ‘/home/zhengjie/work_folder/andbug_work/an...
分类:数据库   时间:2015-05-25 13:09:16    阅读次数:460
Oracle某些功能实现语句处理方法
触发器以及序列CREATE OR REPLACE TRIGGER t_MSTB_BDS_DATA BEFORE INSERT ON MSTB_BDS_DATA FOR EACH ROWDECLARE INTEGRITY_ERROR EXCEPTION; ERRNO ...
分类:数据库   时间:2015-05-22 23:52:54    阅读次数:196
socket Client 天剑最大重连次数
#include<stdlib.h> #include<dirent.h> #include<time.h> #include<unistd.h> #include<dirent.h> #include<sys/types.h> #include<errno.h> #include<sys/socket.h> #include<netinet/in.h> #include<arpa/inet.h&..
分类:其他好文   时间:2015-05-21 20:00:51    阅读次数:158
socket Server 解决TIME_WAIT状态等待问题
#include<stdlib.h> #include<dirent.h> #include<time.h> #include<unistd.h> #include<dirent.h> #include<sys/types.h> #include<errno.h> #include<sys/socket.h> #include<netinet/in.h> #include<arpa/inet.h&..
分类:其他好文   时间:2015-05-21 19:59:33    阅读次数:145
socket Server 解决TIME_WAIT状态等待问题
#include<stdlib.h> #include<dirent.h> #include<time.h> #include<unistd.h> #include<dirent.h> #include<sys/types.h> #include<errno.h> #include<sys/socket.h> #include<netinet/in.h> #include<arpa/inet.h..
分类:其他好文   时间:2015-05-21 19:58:26    阅读次数:229
err -x perror() strerror()
perror()原型:#include void perror(const char *s); 其中,perror()的参数s 是用户提供的字符串。当调用perror()时,它输出这个字符串,后面跟着一个冒号和空格,然后是基于当前errno的值进行的错误类型描述。 strerror()原型:#inc...
分类:其他好文   时间:2015-05-16 17:57:24    阅读次数:116
GPG key retrieval failed: [Errno 14] curl#37 - "Couldn't open file /etc/pki/rpm-gpg/RPM-GPG-KEY-Cent
GPG key retrieval failed: [Errno 14] curl#37 - "Couldn't open file /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6"...
分类:Web程序   时间:2015-05-15 21:28:23    阅读次数:3886
Linux网络编程中EAGAIN错误和EINTR错误
在Linux环境下开发经常会碰到很多错误(设置errno),其中EAGAIN是其中比较常见的一个错误(比如用在非阻塞操作中)。     从字面上来看,是提示再试一次。这个错误经常出现在当应用程序进行一些非阻塞(non-blocking)操作(对文件或socket)的时候。例如,以O_NONBLOCK的标志打开文件/socket/FIFO,如果你连续做read操作而没有数据可读。此时程序不会阻塞起...
分类:系统相关   时间:2015-05-12 15:37:43    阅读次数:190
几个书本上不常见到的C语言函数
函数名称:getcwd#include char *getcwd(char *buf, size_t size);作用:把当前目录的绝对地址保存到 buf 中,buf 的大小为 size。如果 size太小无法保存该地址,返回 NULL 并设置 errno 为 ERANGE。可以采取令 buf 为 ...
分类:编程语言   时间:2015-05-12 01:25:01    阅读次数:137
Python学习笔记(一)
1  .netstat -no 这个命令是察看端口的,并且可以通过pid察看是哪些程序在用这些端口! 2  在Python中或其它语言中,利用Socket编写服务器和客户端通信程序,经常会遇到一个错误: socket.error: [Errno 10048] 通常每个套接字地址(协议/网络地址/端口)只允许使用一次这个提示会在端口冲突的时候出现,可能的原因是在服务器程序中创建一个Socke...
分类:编程语言   时间:2015-05-09 10:13:53    阅读次数:849
1034条   上一页 1 ... 83 84 85 86 87 ... 104 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!