Changeset 1402ee25 in rtems


Ignore:
Timestamp:
08/12/96 18:56:04 (27 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
3b97b7a0
Parents:
c7a9c66
Message:

fixed spacing ; moved a dummy MP support routine to clean up printout.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/posix/src/mutex.c

    rc7a9c66 r1402ee25  
    4444{
    4545  return POSIX_MP_NOT_IMPLEMENTED();
     46}
     47
     48void 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 */
    4654}
    4755
     
    361369}
    362370
    363 /*
     371/*PAGE
     372 *
    364373 *  _POSIX_Mutex_Lock_support
    365374 *
     
    437446 *  NOTE: P1003.4b/D8 adds pthread_mutex_timedlock(), p. 29
    438447 */
    439 
    440 void POSIX_Threads_mutex_MP_support(
    441   Thread_Control *the_thread,
    442   Objects_Id      id
    443 )
    444 {
    445   (void) POSIX_MP_NOT_IMPLEMENTED();   /* XXX: should never get here */
    446 }
    447448
    448449int pthread_mutex_unlock(
  • cpukit/posix/src/mutex.c

    rc7a9c66 r1402ee25  
    4444{
    4545  return POSIX_MP_NOT_IMPLEMENTED();
     46}
     47
     48void 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 */
    4654}
    4755
     
    361369}
    362370
    363 /*
     371/*PAGE
     372 *
    364373 *  _POSIX_Mutex_Lock_support
    365374 *
     
    437446 *  NOTE: P1003.4b/D8 adds pthread_mutex_timedlock(), p. 29
    438447 */
    439 
    440 void POSIX_Threads_mutex_MP_support(
    441   Thread_Control *the_thread,
    442   Objects_Id      id
    443 )
    444 {
    445   (void) POSIX_MP_NOT_IMPLEMENTED();   /* XXX: should never get here */
    446 }
    447448
    448449int pthread_mutex_unlock(
Note: See TracChangeset for help on using the changeset viewer.