rtems: Remove unused event_condition member

This commit is contained in:
Sebastian Huber
2012-10-30 18:00:33 +01:00
parent f33873ba8e
commit f8657bbd31
2 changed files with 0 additions and 3 deletions
-2
View File
@@ -212,8 +212,6 @@ typedef struct {
typedef struct {
/** This field contains the pending events for this task. */
rtems_event_set pending_events;
/** This field contains the event wait condition for this task. */
rtems_event_set event_condition;
/** This field contains the Classic API Signal information for this task. */
ASR_Information Signal;
/**
-1
View File
@@ -65,7 +65,6 @@ static bool _RTEMS_tasks_Create_extension(
created->API_Extensions[ THREAD_API_RTEMS ] = api;
api->pending_events = EVENT_SETS_NONE_PENDING;
api->event_condition = 0;
_ASR_Initialize( &api->Signal );
created->task_variables = NULL;