summaryrefslogtreecommitdiffstats
path: root/bsd_eth_drivers/libbsdport/rtems_callout.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-02-13Avoid rtems_bsdnet_event_receive()HEADmasterSebastian Huber1-1/+3
RTEMS 4.11 will use system events inside the network stack. Use normal events for CALLOUT(9) and TASKQUEUE(9) implementations.
2009-08-062009-08-06 Till Straumann <Till.Straumann@TU-Berlin.de>Till Straumann1-0/+5
* libbsdport/rtems_callout.c: fixed possible race condition. callout_stop() must check again from critical/protected section of code if callout is still on the list/active. Otherwise, the callout-task could have executed and removed the callout between callout_stop() checking the p_prev pointer and entering the critical section.
2009-04-23 - callout_stop() and callout_reset() actually must return an 'int' valueTill Straumann1-5/+21
indicating whether a callout was pending. - added callout_active(), callout_pending(), callout_deactivate().