用setTimeout函数的时候会有一个返回的id,你可以用一个id记录一个setTimeout。id=setTimeout("这里写你的函数",1000);然后当你不用的时候可以clearTimeout(id)释放这个timer。
expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘’ toke
我遇到的是这样的问题,然后在自定义的头文件xxxh中加了一个相应的系统头文件就ok了!
你也试试……
这个函数被信号中断就会返回-1的,系统调用约定就这样,我man了一下,有这么一句:
EINTR The call was interrupted by a signal handler before any of the requested events occurred or the timeout expired; see signal(7)
即调用被信号打断,返回-1,errno被设置为EINTR
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)