summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/mutex.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-29 16:04:31 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-29 16:04:31 +0000
commit974ff40e575af098e4c0de168721333a764ec8ca (patch)
tree89525f00ebffc57fb7f589f1bf75299c014f7c70 /cpukit/posix/src/mutex.c
parentsplit the inclusion of "EXTERN" data based on whether it was sapi, (diff)
downloadrtems-974ff40e575af098e4c0de168721333a764ec8ca.tar.bz2
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
Diffstat (limited to 'cpukit/posix/src/mutex.c')
-rw-r--r--cpukit/posix/src/mutex.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/cpukit/posix/src/mutex.c b/cpukit/posix/src/mutex.c
index bdf4065314..51ac6e097c 100644
--- a/cpukit/posix/src/mutex.c
+++ b/cpukit/posix/src/mutex.c
@@ -13,6 +13,41 @@
#include <rtems/posix/priority.h>
#include <rtems/posix/time.h>
+/*
+ * TEMPORARY
+ */
+
+void _POSIX_Mutex_MP_Send_process_packet (
+ POSIX_Mutex_MP_Remote_operations operation,
+ Objects_Id mutex_id,
+ Objects_Name name,
+ Objects_Id proxy_id
+)
+{
+ (void) POSIX_MP_NOT_IMPLEMENTED();
+}
+
+void _POSIX_Mutex_MP_Send_object_was_deleted (
+ Thread_Control *the_proxy
+)
+{
+ (void) POSIX_MP_NOT_IMPLEMENTED();
+}
+
+int _POSIX_Mutex_MP_Send_request_packet (
+ POSIX_Mutex_MP_Remote_operations operation,
+ Objects_Id mutex_id,
+ boolean wait, /* XXX options */
+ Watchdog_Interval timeout
+)
+{
+ return POSIX_MP_NOT_IMPLEMENTED();
+}
+
+/*
+ * END OF TEMPORARY
+ */
+
/*PAGE
*
* The default mutex attributes structure.