From 974ff40e575af098e4c0de168721333a764ec8ca Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 29 May 1996 16:04:31 +0000 Subject: renamed signal.c to psignal.c to avoid naming problems. added mp stubs to cond.c and mutex.c to eliminate link errors. added pthread_exit to pthread.c --- cpukit/posix/src/cond.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'cpukit/posix/src/cond.c') diff --git a/cpukit/posix/src/cond.c b/cpukit/posix/src/cond.c index ce02fd7596..c5c91d20e7 100644 --- a/cpukit/posix/src/cond.c +++ b/cpukit/posix/src/cond.c @@ -13,6 +13,31 @@ #include #include +/* + * TEMPORARY + */ + +void _POSIX_Condition_variables_MP_Send_process_packet ( + POSIX_Condition_variables_MP_Remote_operations operation, + Objects_Id condition_variables_id, + Objects_Name name, + Objects_Id proxy_id +) +{ + (void) POSIX_MP_NOT_IMPLEMENTED(); +} + +void _POSIX_Condition_variables_MP_Send_extract_proxy( + Thread_Control *the_thread +) +{ + (void) POSIX_MP_NOT_IMPLEMENTED(); +} + +/* + * END OF TEMPORARY + */ + /*PAGE * * The default condition variable attributes structure. -- cgit v1.2.3