Update of /cvsroot/dhcp-agent/dhcp-agent/src
In directory sc8-pr-cvs1:/tmp/cvs-serv7064/src
Modified Files:
dhcp-client-states.c
Log Message:
no race condition in timer handling
Index: dhcp-client-states.c
===================================================================
RCS file: /cvsroot/dhcp-agent/dhcp-agent/src/dhcp-client-states.c,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** dhcp-client-states.c 26 Jun 2003 23:56:41 -0000 1.41
--- dhcp-client-states.c 27 Jun 2003 03:15:25 -0000 1.42
***************
*** 986,990 ****
}
! /* wait for any interrupts. */
suspend_for_interrupts();
--- 986,993 ----
}
! /* wait for any interrupts: we're OK. there is no race
! * condition here since our suspension will unmask us
! * and allow any previous signals to affect us here. */
!
suspend_for_interrupts();
|