コード例 #1
0
ファイル: semflush.c プロジェクト: AoLaD/rtems
rtems_status_code rtems_semaphore_flush( rtems_id id )
{
  Semaphore_Control    *the_semaphore;
  Thread_queue_Context  queue_context;

  the_semaphore = _Semaphore_Get( id, &queue_context );

  if ( the_semaphore == NULL ) {
#if defined(RTEMS_MULTIPROCESSING)
    if ( _Semaphore_MP_Is_remote( id ) ) {
      return RTEMS_ILLEGAL_ON_REMOTE_OBJECT;
    }
#endif

    return RTEMS_INVALID_ID;
  }

  _Thread_queue_Acquire_critical(
    &the_semaphore->Core_control.Wait_queue,
    &queue_context
  );
  _Thread_queue_Context_set_MP_callout(
    &queue_context,
    _Semaphore_MP_Send_object_was_deleted
  );

  switch ( the_semaphore->variant ) {
#if defined(RTEMS_SMP)
    case SEMAPHORE_VARIANT_MRSP:
      _Thread_queue_Release(
        &the_semaphore->Core_control.Wait_queue,
        &queue_context
      );
      return RTEMS_NOT_DEFINED;
#endif
    default:
      _Assert(
        the_semaphore->variant == SEMAPHORE_VARIANT_MUTEX_INHERIT_PRIORITY
          || the_semaphore->variant == SEMAPHORE_VARIANT_MUTEX_PRIORITY_CEILING
          || the_semaphore->variant == SEMAPHORE_VARIANT_MUTEX_NO_PROTOCOL
          || the_semaphore->variant == SEMAPHORE_VARIANT_SIMPLE_BINARY
          || the_semaphore->variant == SEMAPHORE_VARIANT_COUNTING
      );
      _Thread_queue_Flush_critical(
        &the_semaphore->Core_control.Wait_queue.Queue,
        _Semaphore_Get_operations( the_semaphore ),
        _Thread_queue_Flush_status_unavailable,
        &queue_context
      );
      break;
  }

  return RTEMS_SUCCESSFUL;
}
コード例 #2
0
ファイル: semrelease.c プロジェクト: vecnatechnologies/rtems
rtems_status_code rtems_semaphore_release( rtems_id id )
{
    Semaphore_Control    *the_semaphore;
    Thread_queue_Context  queue_context;
    Thread_Control       *executing;
    Status_Control        status;

    the_semaphore = _Semaphore_Get( id, &queue_context );

    if ( the_semaphore == NULL ) {
#if defined(RTEMS_MULTIPROCESSING)
        return _Semaphore_MP_Release( id );
#else
        return RTEMS_INVALID_ID;
#endif
    }

    executing = _Thread_Executing;

    _Thread_queue_Context_set_MP_callout(
        &queue_context,
        _Semaphore_Core_mutex_mp_support
    );

    switch ( the_semaphore->variant ) {
    case SEMAPHORE_VARIANT_MUTEX_INHERIT_PRIORITY:
        status = _CORE_recursive_mutex_Surrender(
                     &the_semaphore->Core_control.Mutex.Recursive,
                     executing,
                     &queue_context
                 );
        break;
    case SEMAPHORE_VARIANT_MUTEX_PRIORITY_CEILING:
        status = _CORE_ceiling_mutex_Surrender(
                     &the_semaphore->Core_control.Mutex,
                     executing,
                     &queue_context
                 );
        break;
    case SEMAPHORE_VARIANT_MUTEX_NO_PROTOCOL:
        _CORE_recursive_mutex_Surrender_no_protocol(
            &the_semaphore->Core_control.Mutex.Recursive,
            _Semaphore_Get_operations( the_semaphore ),
            executing,
            &queue_context
        );
        status = STATUS_SUCCESSFUL;
        break;
    case SEMAPHORE_VARIANT_SIMPLE_BINARY:
        status = _CORE_semaphore_Surrender(
                     &the_semaphore->Core_control.Semaphore,
                     _Semaphore_Get_operations( the_semaphore ),
                     1,
                     &queue_context
                 );
        _Assert(
            status == STATUS_SUCCESSFUL
            || status == STATUS_MAXIMUM_COUNT_EXCEEDED
        );
        status = STATUS_SUCCESSFUL;
        break;
#if defined(RTEMS_SMP)
    case SEMAPHORE_VARIANT_MRSP:
        status = _MRSP_Surrender(
                     &the_semaphore->Core_control.MRSP,
                     executing,
                     &queue_context
                 );
        break;
#endif
    default:
        _Assert( the_semaphore->variant == SEMAPHORE_VARIANT_COUNTING );
        status = _CORE_semaphore_Surrender(
                     &the_semaphore->Core_control.Semaphore,
                     _Semaphore_Get_operations( the_semaphore ),
                     UINT32_MAX,
                     &queue_context
                 );
        break;
    }

    return _Status_Get( status );
}
コード例 #3
0
ファイル: semdelete.c プロジェクト: greenmeent/rtems
rtems_status_code rtems_semaphore_delete(
  rtems_id   id
)
{
  Semaphore_Control    *the_semaphore;
  Thread_queue_Context  queue_context;
  Status_Control        status;

  _Objects_Allocator_lock();
  the_semaphore = _Semaphore_Get( id, &queue_context );

  if ( the_semaphore == NULL ) {
    _Objects_Allocator_unlock();

#if defined(RTEMS_MULTIPROCESSING)
    if ( _Semaphore_MP_Is_remote( id ) ) {
      return RTEMS_ILLEGAL_ON_REMOTE_OBJECT;
    }
#endif

    return RTEMS_INVALID_ID;
  }

  _Thread_queue_Acquire_critical(
    &the_semaphore->Core_control.Wait_queue,
    &queue_context.Lock_context
  );

  switch ( the_semaphore->variant ) {
    case SEMAPHORE_VARIANT_MUTEX_INHERIT_PRIORITY:
    case SEMAPHORE_VARIANT_MUTEX_PRIORITY_CEILING:
    case SEMAPHORE_VARIANT_MUTEX_NO_PROTOCOL:
      if (
        _CORE_mutex_Is_locked(
          &the_semaphore->Core_control.Mutex.Recursive.Mutex
        )
      ) {
        status = STATUS_RESOURCE_IN_USE;
      } else {
        status = STATUS_SUCCESSFUL;
      }

      break;
#if defined(RTEMS_SMP)
    case SEMAPHORE_VARIANT_MRSP:
      status = _MRSP_Can_destroy( &the_semaphore->Core_control.MRSP );
      break;
#endif
    default:
      _Assert(
        the_semaphore->variant == SEMAPHORE_VARIANT_SIMPLE_BINARY
          || the_semaphore->variant == SEMAPHORE_VARIANT_COUNTING
      );
      status = STATUS_SUCCESSFUL;
      break;
  }

  if ( status != STATUS_SUCCESSFUL ) {
    _Thread_queue_Release(
      &the_semaphore->Core_control.Wait_queue,
      &queue_context.Lock_context
    );
    _Objects_Allocator_unlock();
    return _Status_Get( status );
  }

  _Objects_Close( &_Semaphore_Information, &the_semaphore->Object );

  switch ( the_semaphore->variant ) {
#if defined(RTEMS_SMP)
    case SEMAPHORE_VARIANT_MRSP:
      _MRSP_Destroy( &the_semaphore->Core_control.MRSP, &queue_context );
      break;
#endif
    default:
      _Assert(
        the_semaphore->variant == SEMAPHORE_VARIANT_MUTEX_INHERIT_PRIORITY
          || the_semaphore->variant == SEMAPHORE_VARIANT_MUTEX_PRIORITY_CEILING
          || the_semaphore->variant == SEMAPHORE_VARIANT_MUTEX_NO_PROTOCOL
          || the_semaphore->variant == SEMAPHORE_VARIANT_SIMPLE_BINARY
          || the_semaphore->variant == SEMAPHORE_VARIANT_COUNTING
      );
      _Thread_queue_Flush_critical(
        &the_semaphore->Core_control.Wait_queue.Queue,
        _Semaphore_Get_operations( the_semaphore ),
        _Thread_queue_Flush_status_object_was_deleted,
        &queue_context
      );
      _Thread_queue_Destroy( &the_semaphore->Core_control.Wait_queue );
      break;
  }

#if defined(RTEMS_MULTIPROCESSING)
  if ( the_semaphore->is_global ) {

    _Objects_MP_Close( &_Semaphore_Information, id );

    _Semaphore_MP_Send_process_packet(
      SEMAPHORE_MP_ANNOUNCE_DELETE,
      id,
      0,                         /* Not used */
      0                          /* Not used */
    );
  }
#endif

  _Semaphore_Free( the_semaphore );
  _Objects_Allocator_unlock();
  return RTEMS_SUCCESSFUL;
}