码迷,mamicode.com
首页 >  
搜索关键字:timeval    ( 130个结果
undefined reference to `clock_gettime' 链接错误问题解决
当你编译程序时, 碰到下面的链接错误,   timeval.c:(.text+0x6f): undefined reference to `clock_gettime' 则你只需要在你的Makefile文件里面添加    -lrt  ,重新编译即可。...
分类:其他好文   时间:2014-12-09 17:43:18    阅读次数:196
c 时间 学习
linux#include #include int main(int argc,char **argv){ //两种时间的获取方法 struct timeval tv; gettimeofday(&tv,NULL); time_t t=time(0); printf(...
分类:其他好文   时间:2014-12-06 12:43:42    阅读次数:156
select()函数以及FD_ZERO、FD_SET、FD_CLR、FD_ISSET
select函数用于在非阻塞中,当一个套接字或一组套接字有信号时通知你,系统提供select函数来实现多路复用输入/输出模型,原型:int select(int maxfd,fd_set *rdset,fd_set *wrset,fd_set *exset,struct timeval *timeo...
分类:其他好文   时间:2014-11-29 10:16:34    阅读次数:194
glog工具函数
1.时间处理函数int64_t CycleClock_Now() { struct timeval tv; gettimeofday(&tv, NULL); return static_cast(tv.tv_sec) * 1000000 + tv.tv_usec;}double W...
分类:其他好文   时间:2014-11-28 20:02:42    阅读次数:206
select()函数以及FD_ZERO、FD_SET、FD_CLR、FD_ISSET
select函数用于在非阻塞中,当一个套接字或一组套接字有信号时通知你,系统提供select函数来实现多路复用输入/输出模型,原型:int select(int maxfd,fd_set *rdset,fd_set *wrset,fd_set *exset,struct timeval *timeo...
分类:其他好文   时间:2014-11-25 15:51:52    阅读次数:203
select实现精确定时器
select实现精确定时器 int?select(int?nfds,?fd_set?*readfds,?fd_set?*writefds,?fd_set?*exceptfds,?struct?timeval?*timeout); struct?timeval?{?long?tv_sec;?long?tv_usec;?}?/*?secon...
分类:其他好文   时间:2014-11-17 21:23:19    阅读次数:252
c/c++中sleep()函数毫秒级的实现
最近看到好多人在问,c/c++中的sleep函数是秒级的,能不能实现毫秒级的呢?当然很简单,我的写法如下 #include #include static void sleep_ms(unsigned int secs) {     struct timeval tval;     tval.tv_sec=secs/1000;     tval.tv_use...
分类:编程语言   时间:2014-11-04 13:17:06    阅读次数:297
select()函数以及FD_ZERO、FD_SET、FD_CLR、FD_ISSET(转)
select函数用于在非阻塞中,当一个套接字或一组套接字有信号时通知你,系统提供select函数来实现多路复用输入/输出模型,原型:int select(int maxfd,fd_set *rdset,fd_set *wrset,fd_set *exset,struct timeval *timeo...
分类:其他好文   时间:2014-10-29 19:01:50    阅读次数:230
项目中的小bug
最近在做电子书项目中,采用select方式输入子系统,运行后发现键盘输入没问题,可是触摸屏却没反应,触摸屏驱动没问题,tslib也移植正确。问题在哪呢? 在代码中加入打印语句: 54 static int isOutOf500ms(struct timeval *ptPreTime, struct ...
分类:其他好文   时间:2014-10-19 15:37:54    阅读次数:208
linux select
man select:#include #include int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval ...
分类:系统相关   时间:2014-10-17 15:02:59    阅读次数:218
130条   上一页 1 ... 9 10 11 12 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!