全部博文(68)
发布时间:2015-08-31 09:32:30
1。alarm()执行后,进程将继续执行,在后期(alarm以后)的执行过程中将会在seconds秒后收到信号SIGALRM并执行其处理函数。<p>#include <stdio.h><br />#include <unistd.h><br />#include <signal.h><br />void sigalrm_fn(int sig)<br />{<br /> printf("alarm!\n");<br />&n.........【阅读全文】
发布时间:2015-08-29 14:39:04
<span style="color:#333333;font-family:Arial;font-size:14px;line-height:26px;white-space:normal;background-color:#FFFFFF;">在windows程序设计与开发过程中,特别是涉及到开发嵌入式软硬件系统时,往往会涉及到串口编程。</span><br /><div><div class="codeheads"><p>点击(<span style="cursor:pointer;c.........【阅读全文】
发布时间:2015-08-24 11:03:29
<h2 style="margin:0px;padding:0px;font-family:Arial;line-height:26px;white-space:normal;background-color:#FFFFFF;">应用层</h2><p style="margin-top:0px;margin-bottom:0px;font-family:Arial;font-size:14px;line-height:26px;white-space:normal;background-color:#FFFFFF;"> </p><p style="margin-.........【阅读全文】
发布时间:2015-08-19 09:14:04
<b>1</b><b>、安装必要的开发包</b> <p style="text-align:left;line-height:15pt;background:white;" align="left"> </p><p style="text-align:left;line-height:15pt;background:white;" align="left"><br />[root@localhost ~]# yum install gcc gcc-c++ autoconf automake</p><p style="text-align:left.........【阅读全文】
发布时间:2015-08-18 16:35:29
<p style="line-height:25.2000007629395px;margin:10px auto;color:#333333;font-family:Georgia, 'Times New Roman', Times, sans-serif;font-size:14px;white-space:normal;background-color:#FFFFFF;">在Linux Socket服务器短编程时,为了处理大量客户的连接请求,需要使用非阻塞I/O和复用,select、poll和epoll是Lin.........【阅读全文】