OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [posix/] [src/] [mutexmp.c] - Blame information for rev 30

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*
2
 *  $Id: mutexmp.c,v 1.2 2001-09-27 11:59:17 chris Exp $
3
 */
4
 
5
#include <assert.h>
6
#include <errno.h>
7
#include <pthread.h>
8
 
9
#include <rtems/system.h>
10
#include <rtems/score/coremutex.h>
11
#include <rtems/score/watchdog.h>
12
#if defined(RTEMS_MULTIPROCESSING)
13
#include <rtems/score/mpci.h>
14
#endif
15
#include <rtems/posix/mutex.h>
16
#include <rtems/posix/priority.h>
17
#include <rtems/posix/time.h>
18
 
19
/*
20
 *  TEMPORARY
21
 */
22
 
23
#if defined(RTEMS_MULTIPROCESSING)
24
void _POSIX_Mutex_MP_Send_process_packet (
25
  POSIX_Mutex_MP_Remote_operations  operation,
26
  Objects_Id                        mutex_id,
27
  Objects_Name                      name,
28
  Objects_Id                        proxy_id
29
)
30
{
31
  (void) POSIX_MP_NOT_IMPLEMENTED();
32
}
33
 
34
void _POSIX_Mutex_MP_Send_object_was_deleted (
35
  Thread_Control *the_proxy
36
)
37
{
38
  (void) POSIX_MP_NOT_IMPLEMENTED();
39
}
40
 
41
int _POSIX_Mutex_MP_Send_request_packet (
42
  POSIX_Mutex_MP_Remote_operations  operation,
43
  Objects_Id                        mutex_id,
44
  boolean                           wait,  /* XXX options */
45
  Watchdog_Interval                 timeout
46
)
47
{
48
  return POSIX_MP_NOT_IMPLEMENTED();
49
}
50
 
51
void _POSIX_Threads_mutex_MP_support(
52
  Thread_Control *the_thread,
53
  Objects_Id      id
54
)
55
{
56
  (void) POSIX_MP_NOT_IMPLEMENTED();   /* XXX: should never get here */
57
}
58
#endif
59
 
60
/*
61
 *  END OF TEMPORARY
62
 */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.