summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/systemeventsend.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* rtems: Move internal structures to tasksdata.hSebastian Huber2018-11-121-1/+1
| | | | Update #3598.
* Replace *_Get_interrupt_disable() with *_Get()Sebastian Huber2016-05-201-1/+1
| | | | | Uniformly use *_Get() to get an object by identifier with a lock context.
* score: Simplify _Thread_Get_interrupt_disable()Sebastian Huber2016-05-041-26/+20
| | | | Remove the object location parameter.
* rtems: Return status in _Event_Surrender()Sebastian Huber2016-05-041-2/+1
|
* score: Delete _Objects_Put_for_get_isr_disable()Sebastian Huber2015-05-191-1/+0
| | | | | This function is superfluous due to the introduction of fine grained locking.
* score: Add _Thread_Get_interrupt_disable()Sebastian Huber2015-04-211-1/+2
| | | | | | | | | | Remove _Thread_Acquire() and _Thread_Acquire_for_executing(). Add utility functions for the default thread lock. Use the default thread lock for the RTEMS events. There is no need to disable thread dispatching and a Giant acquire in _Event_Timeout() since this was already done by the caller. Update #2273.
* score: Implement fine-grained locking for eventsSebastian Huber2015-03-051-4/+4
| | | | | | | Use the ISR lock of the thread object to protect the event state and use the Giant lock only for the blocking operations. Update #2273.
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* score: Create thread implementation headerSebastian Huber2013-07-261-0/+1
| | | | | | | | Move implementation specific parts of thread.h and thread.inl into new header file threadimpl.h. The thread.h contains now only the application visible API. Remove superfluous header file includes from various files.
* rtems: Create event implementation headerSebastian Huber2013-07-231-1/+1
| | | | | | Move implementation specific parts of event.h, event.inl, eventset.h and eventset.inl into new header file eventimpl.h. The event.h contains now only the application visible API.
* score: Add and use _Objects_Put()Sebastian Huber2013-06-071-1/+1
| | | | | | Add and use _Objects_Put_without_thread_dispatch(). These two functions pair with the _Objects_Get() function. This helps to introduce object specific SMP locks to avoid lock contention.
* rtems: Fix system event send for remote threadsSebastian Huber2013-06-071-0/+1
|
* rtems: Add system eventsSebastian Huber2012-10-301-0/+65
System events are similar to normal events. They offer a second set of events. These events are intended for internal RTEMS use and should not be used by applications (with the exception of the transient system event).