david/ipxe
Archived
1
0

[retry] Expose retry_poll() to explicitly poll all running timers

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown 2012-08-31 19:50:56 +01:00
parent 1cbb1581f1
commit de802310bc
2 changed files with 12 additions and 3 deletions

View File

@ -85,6 +85,7 @@ extern void start_timer ( struct retry_timer *timer );
extern void start_timer_fixed ( struct retry_timer *timer,
unsigned long timeout );
extern void stop_timer ( struct retry_timer *timer );
extern void retry_poll ( void );
/**
* Start timer with no delay

View File

@ -177,11 +177,10 @@ static void timer_expired ( struct retry_timer *timer ) {
}
/**
* Single-step the retry timer list
* Poll the retry timer list
*
* @v process Retry timer process
*/
static void retry_step ( struct process *process __unused ) {
void retry_poll ( void ) {
struct retry_timer *timer;
unsigned long now = currticks();
unsigned long used;
@ -200,5 +199,14 @@ static void retry_step ( struct process *process __unused ) {
}
}
/**
* Single-step the retry timer list
*
* @v process Retry timer process
*/
static void retry_step ( struct process *process __unused ) {
retry_poll();
}
/** Retry timer process */
PERMANENT_PROCESS ( retry_process, retry_step );