Changeset 1402ee25 in rtems
- Timestamp:
- 08/12/96 18:56:04 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 3b97b7a0
- Parents:
- c7a9c66
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/src/mutex.c
rc7a9c66 r1402ee25 44 44 { 45 45 return POSIX_MP_NOT_IMPLEMENTED(); 46 } 47 48 void POSIX_Threads_mutex_MP_support( 49 Thread_Control *the_thread, 50 Objects_Id id 51 ) 52 { 53 (void) POSIX_MP_NOT_IMPLEMENTED(); /* XXX: should never get here */ 46 54 } 47 55 … … 361 369 } 362 370 363 /* 371 /*PAGE 372 * 364 373 * _POSIX_Mutex_Lock_support 365 374 * … … 437 446 * NOTE: P1003.4b/D8 adds pthread_mutex_timedlock(), p. 29 438 447 */ 439 440 void POSIX_Threads_mutex_MP_support(441 Thread_Control *the_thread,442 Objects_Id id443 )444 {445 (void) POSIX_MP_NOT_IMPLEMENTED(); /* XXX: should never get here */446 }447 448 448 449 int pthread_mutex_unlock( -
cpukit/posix/src/mutex.c
rc7a9c66 r1402ee25 44 44 { 45 45 return POSIX_MP_NOT_IMPLEMENTED(); 46 } 47 48 void POSIX_Threads_mutex_MP_support( 49 Thread_Control *the_thread, 50 Objects_Id id 51 ) 52 { 53 (void) POSIX_MP_NOT_IMPLEMENTED(); /* XXX: should never get here */ 46 54 } 47 55 … … 361 369 } 362 370 363 /* 371 /*PAGE 372 * 364 373 * _POSIX_Mutex_Lock_support 365 374 * … … 437 446 * NOTE: P1003.4b/D8 adds pthread_mutex_timedlock(), p. 29 438 447 */ 439 440 void POSIX_Threads_mutex_MP_support(441 Thread_Control *the_thread,442 Objects_Id id443 )444 {445 (void) POSIX_MP_NOT_IMPLEMENTED(); /* XXX: should never get here */446 }447 448 448 449 int pthread_mutex_unlock(
Note: See TracChangeset
for help on using the changeset viewer.