forked from Imagelibrary/rtems
2010-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* timer/timer.c: Do not do the indirect call if NULL.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2010-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* timer/timer.c: Do not do the indirect call if NULL.
|
||||
|
||||
2010-06-14 Joel Sherrill <joel.sherrilL@OARcorp.com>
|
||||
|
||||
* startup/bspstart.c: Formatting.
|
||||
|
||||
@@ -251,7 +251,8 @@ uint32_t benchmark_timer_read(void)
|
||||
|
||||
void Timer_exit(void)
|
||||
{
|
||||
return (*Timer_exit_function)();
|
||||
if ( Timer_exit_function )
|
||||
return (*Timer_exit_function)();
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user