Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在内部分别使用pthread_cond_wait和pthread_cond_signal使用sigwait和kill(从)?signal.h
pthread_cond_wait
pthread_cond_signal
sigwait
kill
signal.h
如果是,他们使用什么信号编号,我的意思是,传递给int kill(pid_t pid, int sig)as 的值是什么sig?
int kill(pid_t pid, int sig)
sig
在一般实现中,这些不需要常规的 UNIX 信号。相反,它依赖于共享内存位置上的原子操作和几个操作系统原语,如“睡眠”和“唤醒”。