摘要: undefined reference to `sem_init' undefined reference to `sem_post' undefined reference to `sem_wait' 编译选项需要加入一个多线程 gcc -pthread -o outfile.out filename.c [source code] #include "sched.h" #include... 阅读全文
posted @ 2010-03-11 22:18 tungli 阅读(6303) 评论(0) 推荐(0) 编辑
摘要: 函数pthread_join用来等待一个线程的结束。函数原型为:  extern int pthread_join __P ((pthread_t __th, void **__thread_return));  第一个参数为被等待的线程标识符,第二个参数为一个用户定义的指针,它可以用来存储被等待线程的返回值。这个函数是一个线程阻塞的函数,调用它的线程将一直等待到被等待的线程结束为止,当函数返回时... 阅读全文
posted @ 2010-03-11 21:48 tungli 阅读(44244) 评论(0) 推荐(1) 编辑
摘要: kill -s SIGUSR1 pid 阅读全文
posted @ 2010-03-11 17:31 tungli 阅读(509) 评论(0) 推荐(0) 编辑
摘要: 功能描述:设定对信号屏蔽集内的信号的处理方式(阻塞或不阻塞)。用法:#include <signal.h>int sigprocmask(int how, const sigset_t *set, sigset_t *oldset);参数:how:用于指定信号修改的方式,可能选择有三种SIG_BLOCK //加入信号到进程屏蔽。SIG_UNBLOCK //从进程屏蔽里将信号删除。SIG... 阅读全文
posted @ 2010-03-11 16:05 tungli 阅读(3617) 评论(0) 推荐(0) 编辑
摘要: linux下使用math.h编译时加上-lm链接到标准库 阅读全文
posted @ 2010-03-11 14:52 tungli 阅读(1018) 评论(0) 推荐(0) 编辑
摘要: linux 的系统时间有时跟硬件时间是不同步的Linux时钟分为系统时钟(System Clock)和硬件(Real Time Clock,简称RTC)时钟。系统时钟是指当前Linux Kernel中的时钟,而硬件时钟则是主板上由电池供电的时钟,这个硬件时钟可以在BIOS中进行设置。当Linux启动时,硬件时钟会去读取系统时钟的设置,然后系统时钟就会独立于硬件运作。Linux中的所有命令(包括函数... 阅读全文
posted @ 2010-03-11 13:14 tungli 阅读(10015) 评论(0) 推荐(0) 编辑