4 * Copyright (c) 1997-2009 Erez Zadok
5 * Copyright (c) 1989 Jan-Simon Pendry
6 * Copyright (c) 1989 Imperial College of Science, Technology & Medicine
7 * Copyright (c) 1989 The Regents of the University of California.
10 * This code is derived from software contributed to Berkeley by
11 * Jan-Simon Pendry at Imperial College, London.
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. All advertising materials mentioning features or use of this software
22 * must display the following acknowledgment:
23 * This product includes software developed by the University of
24 * California, Berkeley and its contributors.
25 * 4. Neither the name of the University nor the names of its contributors
26 * may be used to endorse or promote products derived from this software
27 * without specific prior written permission.
29 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42 * File: am-utils/amd/clock.c
49 * Modeled on kernel object of the same name.
50 * See usual references.
52 * Use of a heap-based mechanism was rejected:
53 * 1. more complex implementation needed.
54 * 2. not obvious that a list is too slow for Amd.
59 #endif /* HAVE_CONFIG_H */
63 void reschedule_timeouts(time_t now
, time_t then
);
65 typedef struct callout callout
;
67 callout
*c_next
; /* List of callouts */
68 callout_fun
*c_fn
; /* Function to call */
69 opaque_t c_arg
; /* Argument to pass to call */
70 time_t c_time
; /* Time of call */
71 int c_id
; /* Unique identifier */
74 static callout callouts
; /* List of pending callouts */
75 static callout
*free_callouts
; /* Cache of free callouts */
76 static int nfree_callouts
; /* Number on free list */
77 static int callout_id
; /* Next free callout identifier */
79 time_t next_softclock
; /* Time of next call to softclock() */
83 * Number of callout slots we keep on the free list
85 #define CALLOUT_FREE_SLOP 10
88 * Global assumption: valid id's are non-zero.
90 #define CID_ALLOC() (++callout_id)
97 callout
*cp
= free_callouts
;
101 free_callouts
= free_callouts
->c_next
;
104 return ALLOC(struct callout
);
109 free_callout(callout
*cp
)
111 if (nfree_callouts
> CALLOUT_FREE_SLOP
) {
114 cp
->c_next
= free_callouts
;
122 * Schedule a callout.
124 * (*fn)(fn_arg) will be called at clocktime(NULL) + secs
127 timeout(u_int secs
, callout_fun
*fn
, opaque_t fn_arg
)
130 time_t t
= clocktime(NULL
) + secs
;
133 * Allocate and fill in a new callout structure
135 callout
*cpnew
= alloc_callout();
136 cpnew
->c_arg
= fn_arg
;
139 cpnew
->c_id
= CID_ALLOC();
141 if (t
< next_softclock
)
145 * Find the correct place in the list
147 for (cp
= &callouts
; (cp2
= cp
->c_next
); cp
= cp2
)
148 if (cp2
->c_time
>= t
)
158 * Return callout identifier
165 * De-schedule a callout
171 for (cp
= &callouts
; (cp2
= cp
->c_next
); cp
= cp2
) {
172 if (cp2
->c_id
== id
) {
173 cp
->c_next
= cp2
->c_next
;
182 * Reschedule after clock changed
185 reschedule_timeouts(time_t now
, time_t then
)
189 for (cp
= callouts
.c_next
; cp
; cp
= cp
->c_next
) {
190 if (cp
->c_time
>= now
&& cp
->c_time
<= then
) {
191 plog(XLOG_WARNING
, "job %d rescheduled to run immediately", cp
->c_id
);
192 dlog("rescheduling job %d back %ld seconds",
193 cp
->c_id
, (long) (cp
->c_time
- now
));
194 next_softclock
= cp
->c_time
= now
;
210 if (task_notify_todo
)
213 now
= clocktime(NULL
);
216 * While there are more callouts waiting...
218 while ((cp
= callouts
.c_next
) && cp
->c_time
<= now
) {
220 * Extract first from list, save fn & fn_arg and
221 * unlink callout from list and free.
222 * Finally call function.
224 * The free is done first because
225 * it is quite common that the
226 * function will call timeout()
227 * and try to allocate a callout
229 callout_fun
*fn
= cp
->c_fn
;
230 opaque_t fn_arg
= cp
->c_arg
;
232 callouts
.c_next
= cp
->c_next
;
237 } while (task_notify_todo
);
240 * Return number of seconds to next event,
241 * or 0 if there is no event.
243 if ((cp
= callouts
.c_next
))
244 return cp
->c_time
- now
;