mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-28 17:42:22 +08:00
2009-07-06 Joel Sherrill <joel.sherrill@OARcorp.com>
* posix/src/mutexget.c: Restructure to improve ability to do coverage analysis.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2009-07-06 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* posix/src/mutexget.c: Restructure to improve ability to do coverage
|
||||
analysis.
|
||||
|
||||
2009-07-06 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* posix/src/psxtransschedparam.c: Restructure to avoid untestable code
|
||||
|
||||
@@ -34,20 +34,23 @@
|
||||
* PTHREAD_MUTEX_INITIALIZER without adding overhead.
|
||||
*/
|
||||
|
||||
#define ___POSIX_Mutex_Get_support( _id, _location ) \
|
||||
#define ___POSIX_Mutex_Get_support_error_check( _id, _location ) \
|
||||
do { \
|
||||
int _status; \
|
||||
\
|
||||
if ( !_id ) { \
|
||||
*_location = OBJECTS_ERROR; \
|
||||
return (POSIX_Mutex_Control *) 0; \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
#define ___POSIX_Mutex_Get_support_auto_initialization( _id, _location ) \
|
||||
do { \
|
||||
int _status; \
|
||||
\
|
||||
if ( *_id == PTHREAD_MUTEX_INITIALIZER ) { \
|
||||
/* \
|
||||
* Do an "auto-create" here. \
|
||||
*/ \
|
||||
\
|
||||
\
|
||||
_status = pthread_mutex_init( (pthread_mutex_t *)_id, 0 ); \
|
||||
if ( _status ) { \
|
||||
*_location = OBJECTS_ERROR; \
|
||||
@@ -61,7 +64,9 @@ POSIX_Mutex_Control *_POSIX_Mutex_Get (
|
||||
Objects_Locations *location
|
||||
)
|
||||
{
|
||||
___POSIX_Mutex_Get_support( mutex, location );
|
||||
___POSIX_Mutex_Get_support_error_check( mutex, location );
|
||||
|
||||
___POSIX_Mutex_Get_support_auto_initialization( mutex, location );
|
||||
|
||||
return (POSIX_Mutex_Control *)
|
||||
_Objects_Get( &_POSIX_Mutex_Information, (Objects_Id) *mutex, location );
|
||||
@@ -73,7 +78,9 @@ POSIX_Mutex_Control *_POSIX_Mutex_Get_interrupt_disable (
|
||||
ISR_Level *level
|
||||
)
|
||||
{
|
||||
___POSIX_Mutex_Get_support( mutex, location );
|
||||
___POSIX_Mutex_Get_support_error_check( mutex, location );
|
||||
|
||||
___POSIX_Mutex_Get_support_auto_initialization( mutex, location );
|
||||
|
||||
return (POSIX_Mutex_Control *) _Objects_Get_isr_disable(
|
||||
&_POSIX_Mutex_Information,
|
||||
|
||||
Reference in New Issue
Block a user