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

This commit is contained in:
Joel Sherrill
1996-08-12 18:56:04 +00:00
parent c7a9c6675e
commit 1402ee257d
2 changed files with 20 additions and 18 deletions

View File

@@ -45,6 +45,14 @@ int _POSIX_Mutex_MP_Send_request_packet (
return POSIX_MP_NOT_IMPLEMENTED();
}
void POSIX_Threads_mutex_MP_support(
Thread_Control *the_thread,
Objects_Id id
)
{
(void) POSIX_MP_NOT_IMPLEMENTED(); /* XXX: should never get here */
}
/*
* END OF TEMPORARY
*/
@@ -360,7 +368,8 @@ int pthread_mutex_destroy(
return POSIX_BOTTOM_REACHED();
}
/*
/*PAGE
*
* _POSIX_Mutex_Lock_support
*
* A support routine which implements guts of the blocking, non-blocking, and
@@ -437,14 +446,6 @@ int pthread_mutex_trylock(
* NOTE: P1003.4b/D8 adds pthread_mutex_timedlock(), p. 29
*/
void POSIX_Threads_mutex_MP_support(
Thread_Control *the_thread,
Objects_Id id
)
{
(void) POSIX_MP_NOT_IMPLEMENTED(); /* XXX: should never get here */
}
int pthread_mutex_unlock(
pthread_mutex_t *mutex
)