mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-25 17:59:28 +08:00
Introduce map/unmap priority scheduler operations to map thread priority values from/to the user domain to/from the scheduler domain. Use the map priority operation to validate the thread priority. The EDF schedulers use this new operation to distinguish between normal priorities and priorities obtain through a job release. Update #2173. Update #2556.
90 lines
2.6 KiB
C
90 lines
2.6 KiB
C
/*
|
|
* COPYRIGHT (c) 1989-2012.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.org/license/LICENSE.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "tmacros.h"
|
|
#include <pthread.h>
|
|
#include <errno.h>
|
|
|
|
const char rtems_test_name[] = "PSXAUTOINIT 1";
|
|
|
|
/* forward declarations to avoid warnings */
|
|
void *POSIX_Init(void *argument);
|
|
|
|
void *POSIX_Init(
|
|
void *argument
|
|
)
|
|
{
|
|
int sc;
|
|
pthread_mutex_t mutex1;
|
|
pthread_mutex_t mutex2;
|
|
int prioceiling;
|
|
|
|
TEST_BEGIN();
|
|
|
|
/* path using mutex get with interrupts disabled */
|
|
mutex1 = PTHREAD_MUTEX_INITIALIZER;
|
|
mutex2 = PTHREAD_MUTEX_INITIALIZER;
|
|
puts( "Init - pthread_mutex_lock - auto initialize - OK" );
|
|
sc = pthread_mutex_lock( &mutex1 );
|
|
fatal_posix_service_status( sc, 0, "mutex lock OK" );
|
|
|
|
puts( "Init - pthread_mutex_lock - auto initialize - EINVAL" );
|
|
sc = pthread_mutex_lock( &mutex2 );
|
|
fatal_posix_service_status( sc, EINVAL, "mutex lock EINVAL" );
|
|
|
|
puts( "Init - pthread_mutex_unlock - OK" );
|
|
sc = pthread_mutex_unlock( &mutex1 );
|
|
fatal_posix_service_status( sc, 0, "mutex unlock OK" );
|
|
|
|
puts( "Init - pthread_mutex_destroy - OK" );
|
|
sc = pthread_mutex_destroy( &mutex1 );
|
|
fatal_posix_service_status( sc, 0, "mutex destroy OK" );
|
|
|
|
/* path using mutex get with dispatching disabled */
|
|
mutex1 = PTHREAD_MUTEX_INITIALIZER;
|
|
mutex2 = PTHREAD_MUTEX_INITIALIZER;
|
|
puts( "Init - pthread_mutex_getprioceiling - auto initialize - OK" );
|
|
prioceiling = 1;
|
|
sc = pthread_mutex_getprioceiling( &mutex1, &prioceiling );
|
|
fatal_posix_service_status( sc, 0, "mutex getprioceiling OK" );
|
|
rtems_test_assert( prioceiling == 0 );
|
|
|
|
puts( "Init - pthread_mutex_getprioceiling - auto initialize - EINVAL" );
|
|
prioceiling = 1;
|
|
sc = pthread_mutex_getprioceiling( &mutex2, &prioceiling );
|
|
fatal_posix_service_status( sc, EINVAL, "mutex getprioceiling EINVAL" );
|
|
rtems_test_assert( prioceiling == 1 );
|
|
|
|
puts( "Init - pthread_mutex_destroy - OK" );
|
|
sc = pthread_mutex_destroy( &mutex1 );
|
|
fatal_posix_service_status( sc, 0, "mutex destroy OK" );
|
|
|
|
TEST_END();
|
|
rtems_test_exit( 0 );
|
|
|
|
return NULL; /* just so the compiler thinks we returned something */
|
|
}
|
|
|
|
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
|
|
#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
|
|
|
|
#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
|
|
|
|
#define CONFIGURE_MAXIMUM_POSIX_THREADS 1
|
|
#define CONFIGURE_MAXIMUM_POSIX_MUTEXES 1
|
|
|
|
#define CONFIGURE_POSIX_INIT_THREAD_TABLE
|
|
|
|
#define CONFIGURE_INIT
|
|
#include <rtems/confdefs.h>
|