1.a time interval during which there is a temporary cessation of something
2.temporary inactivity
1.interrupt temporarily an activity before continuing;
The speaker paused
2.cease an action temporarily;
We pause for station identification
一、 pause() 功能:讓進程暫停直到信號出現 相關函數: kill,signal,sleep 表頭文件: #include<unistd.h> 定義函數: int pause(void); 函數說明: pause()會令目前的進程暫停(進入睡眠狀態),直到被信號(signal)所中斷。 返回值: 只返回-1。 錯誤代碼 EINTR 有信號到達中斷了此函數。 例子 #include <stdio.h> #include <stdlib.h> #include <unistd.h> int main( void ) { /* set an alarm to g