2013-04-08 86 views

回答

2

它在kernel/signal.c定义:

SYSCALL_DEFINE0(pause) 
{ 
    while (!signal_pending(current)) { 
     current->state = TASK_INTERRUPTIBLE; 

    /* .... */