Lines Matching defs:seconds
426 seconds: int
429 Arrange for SIGALRM to arrive after the given number of seconds.
433 signal_alarm_impl(PyObject *module, int seconds)
436 /* alarm() returns the number of seconds remaining */
437 return (long)alarm(seconds);
897 seconds: object
903 The timer will fire after value seconds and after that every interval seconds.
904 The itimer can be cleared by setting seconds to zero.
910 signal_setitimer_impl(PyObject *module, int which, PyObject *seconds,
917 if (timeval_from_double(seconds, &new.it_value) < 0) {
1248 The timeout is specified in seconds, with floating point numbers allowed.