Traceback (most recent call last): File "F:\adt-bundle-windows-x86_64-20140702\eclipse\workspace1\XueChe\src\xueche2\0\xueche.py", line 19, in dr...
分类:
编程语言 时间:
2015-08-13 17:12:32
阅读次数:
1926
暂时的解决方案是在AppDelegate.cpp文件的最后加上一下代码:extern"C"{size_tfwrite$UNIX2003(constvoid*a,size_tb,size_tc,FILE*d){returnfwrite(a,b,c,d);}char*strerror$UNIX2003(interrnum){returnstrerror(errnum);}}
分类:
移动开发 时间:
2015-08-12 15:03:39
阅读次数:
142
mysqldump导出备份后用mysq还原报错ERROR1005(HY000)atline1001:Can‘tcreatetable‘‘(errno:121)删除mysql的ibdata1、ib_logfile0、ib_logfile1再试试,记得备份哦。
分类:
数据库 时间:
2015-08-11 19:20:03
阅读次数:
172
出现问题:C:\Users\len>gem install railsERROR: While executing gem ... (Gem::RemoteFetcher::FetchError) Errno::ETIMEDOUT: A connection attempt failed b...
分类:
其他好文 时间:
2015-08-06 10:54:38
阅读次数:
423
Connection to neutron failed: [Errno 111] Connection refused上面ping的是external network ip的第一个ip,这个ip会作为外部网络的网关,所以在创建好 neutron网络后这个网关ip是可以ping通的;for i in...
分类:
其他好文 时间:
2015-08-04 18:52:09
阅读次数:
223
'error', 'error' => "$errstr ($errno)" ); } // close the socket connection: fclose ( $fp ); // split the result header from the conten...
分类:
Web程序 时间:
2015-08-04 15:36:22
阅读次数:
144
一、Client.php文件通过fsockopen,将请求转发到Server.php<?php
echo‘start‘.time(),PHP_EOL;
$fsp=fsockopen(‘suiwnet.my‘,‘80‘,$errno,$errstr,30);
//这里指定要请求的地址/CliTest/Server.php
$header="GET/CliTest/Server.phpHTTP/1.1\r\n";
$header.="Host:suiwnet.my..
分类:
Web程序 时间:
2015-08-03 14:57:23
阅读次数:
167
system调用返回ECHILD再来看看system返回ECHILD错误的原因,根据system内部实现fork-exec-waitpid,查到应该是waitpid设置了errno,查看waitpid的man page,有下面的描述信息:If the calling process has SA_N...
分类:
其他好文 时间:
2015-08-03 11:31:52
阅读次数:
210
错误检查函数执行错误时,一般都会返回一个特定的值,比如-1,空指针,这些值只能说明有错误发生,但错误的原因没有说明,头文件定义了变量errno,它储存了错误发生时的错误码,通过错误码可以得到错误的描述信息,#include #ifndef errnoextern int errno;#endif程序...
分类:
编程语言 时间:
2015-08-03 08:55:53
阅读次数:
155
1、使用了一个小程序输出所有的errno对应的error字符串,代码如下#include void showError(int err){ printf("errno : %5d , error : %s\n", err, strerror(err));}void showAllErr()...
分类:
系统相关 时间:
2015-07-31 18:16:41
阅读次数:
340