To follow the path,look to the master,follow the master.
发布时间:2016-05-01 02:35:51
CentOS1.yum list mysql-devel yum install mysql-devel-???需安装mysql依赖包???版本号/*****************************以下代码是从网上拷贝,学习使用****************************************************//*练习mysql数据库的连接*/#include <stdio.h>#include <mysql.h>int main(){ &.........【阅读全文】
发布时间:2015-04-22 02:57:47
一、发送信号的函数 int pthread_kill(pthread_t thread, int sig); 1、别被名字吓到,pthread_kill可不是kill,而是向线程发送signal。还记得signal吗,大部分signal的默认动作是终止进程的运行,所以,我们才要用sigaction()去抓信号并加上处理函数。 2、向指定ID.........【阅读全文】