Changeset de92bae in rtems
- Timestamp:
- 12/31/08 03:17:44 (14 years ago)
- Branches:
- 4.10, 4.11, 5, master
- Children:
- ca01c72
- Parents:
- 10d1ac81
- Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r10d1ac81 rde92bae 1 2008-12-31 Ralf Corsépius <ralf.corsepius@rtems.org> 2 3 * rtems/src/timerserver.c: Remove _Timer_Server_body warnings. 4 1 5 2008-12-29 Ralf Corsépius <ralf.corsepius@rtems.org> 2 6 -
cpukit/rtems/src/timerserver.c
r10d1ac81 rde92bae 220 220 * @param[in] ignored is the the task argument that is ignored 221 221 */ 222 Thread_Timer_Server_body(223 uint32_t ignored222 rtems_task _Timer_Server_body( 223 rtems_task_argument argument __attribute__((unused)) 224 224 ) 225 225 { … … 318 318 } 319 319 } 320 321 return 0; /* unreached - only to remove warnings */322 320 } 323 321 … … 463 461 status = rtems_task_start( 464 462 id, /* the id from create */ 465 (rtems_task_entry) _Timer_Server_body,/* the timer server entry point */463 _Timer_Server_body, /* the timer server entry point */ 466 464 0 /* there is no argument */ 467 465 );
Note: See TracChangeset
for help on using the changeset viewer.