HomeSort by relevance Sort by last modified time
    Searched defs:SLEEPTIME (Results 1 - 6 of 6) sorted by null

  /netvirt/usr/src/cmd/sulogin/
sulogin.c 79 #ifndef SLEEPTIME
80 #define SLEEPTIME 4 /* sleeptime before login incorrect msg */
83 #define SLEEPTIME_MAX 5 /* maximum sleeptime */
96 static int sleeptime = SLEEPTIME; variable
207 * Use the same value of SLEEPTIME that login(1) uses. This
220 if ((ptr = defread("SLEEPTIME=")) != NULL)
221 sleeptime = atoi(ptr);
223 if (sleeptime < 0 || sleeptime > SLEEPTIME_MAX
    [all...]
  /netvirt/usr/src/cmd/xntpd/xntpd/
ntp_intres.c 78 * We sleep SLEEPTIME seconds before doing anything, to give the server
86 #define SLEEPTIME 2
200 sleep(SLEEPTIME);
refclock_mx4200.c 113 #define SLEEPTIME 32 /* seconds to wait for reconfig to complete */
357 up->log_time = current_time + SLEEPTIME;
526 up->log_time = current_time + SLEEPTIME;
    [all...]
  /netvirt/usr/src/cmd/su/
su.c 94 #ifndef SLEEPTIME
95 #define SLEEPTIME 4
190 int sleeptime = SLEEPTIME; local
296 * Use the same value of sleeptime and password required that
302 if ((ptr = defread("SLEEPTIME=")) != NULL) {
303 sleeptime = atoi(ptr);
304 if (sleeptime < 0 || sleeptime > 5)
305 sleeptime = SLEEPTIME
    [all...]
  /netvirt/usr/src/cmd/login/
login.c 115 #ifndef SLEEPTIME
116 #define SLEEPTIME 4 /* sleeptime before login incorrect msg */
118 static int Sleeptime = SLEEPTIME;
428 if (Sleeptime < 0 || Sleeptime > 5)
429 Sleeptime = SLEEPTIME;
1298 if ((ptr = defread("SLEEPTIME=")) != NULL)
    [all...]
  /netvirt/usr/src/cmd/init/
init.c 148 * SLEEPTIME The number of seconds "init" sleeps between wakeups if
151 #define SLEEPTIME (5 * 60)
852 SLEEPTIME * MILLISEC);
    [all...]

Completed in 4979 milliseconds