mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-01 08:54:14 -04:00
Minor updates relating to formatting and comments only.
This commit is contained in:
parent
a61db8f155
commit
2bf93bf925
11 changed files with 23 additions and 16 deletions
|
@ -179,7 +179,7 @@
|
|||
</matcher>
|
||||
</filter>
|
||||
<filter>
|
||||
<id>1405341154152</id>
|
||||
<id>1426008785534</id>
|
||||
<name>src/lwIP_Demo/lwip-1.4.0/src/core</name>
|
||||
<type>10</type>
|
||||
<matcher>
|
||||
|
@ -188,7 +188,7 @@
|
|||
</matcher>
|
||||
</filter>
|
||||
<filter>
|
||||
<id>1405341154162</id>
|
||||
<id>1426008785544</id>
|
||||
<name>src/lwIP_Demo/lwip-1.4.0/src/core</name>
|
||||
<type>10</type>
|
||||
<matcher>
|
||||
|
|
|
@ -433,7 +433,7 @@ sys_timeouts_mbox_fetch(sys_mbox_t *mbox, void **msg)
|
|||
}
|
||||
|
||||
if (time_needed == SYS_ARCH_TIMEOUT) {
|
||||
/* If time == SYS_ARCH_TIMEOUT, a timeout occured before a message
|
||||
/* If time == SYS_ARCH_TIMEOUT, a timeout occurred before a message
|
||||
could be fetched. We should now call the timeout handler and
|
||||
deallocate the memory allocated for the timeout. */
|
||||
tmptimeout = next_timeout;
|
||||
|
|
|
@ -306,7 +306,9 @@ extern void vPortTickISR( void *pvUnused );
|
|||
purpose. */
|
||||
vPortEnableInterrupt( XPAR_INTC_0_TMRCTR_0_VEC_ID );
|
||||
|
||||
/* Configure the timer interrupt handler. */
|
||||
/* Configure the timer interrupt handler. This installs the handler
|
||||
directly, rather than through the Xilinx driver. This is done for
|
||||
efficiency. */
|
||||
XTmrCtr_SetHandler( &xTickTimerInstance, ( void * ) vPortTickISR, NULL );
|
||||
|
||||
/* Set the correct period for the timer. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue