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

Subversion Repositories openrisc

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

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*
2
 *  $Id: mutexattrsetprotocol.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
/*PAGE
20
 *
21
 *  13.6.1 Mutex Initialization Scheduling Attributes, P1003.1c/Draft 10, p. 128
22
 */
23
 
24
int pthread_mutexattr_setprotocol(
25
  pthread_mutexattr_t   *attr,
26
  int                    protocol
27
)
28
{
29
  if ( !attr || !attr->is_initialized )
30
    return EINVAL;
31
 
32
  switch ( protocol ) {
33
    case PTHREAD_PRIO_NONE:
34
    case PTHREAD_PRIO_INHERIT:
35
    case PTHREAD_PRIO_PROTECT:
36
      attr->protocol = protocol;
37
      return 0;
38
 
39
    default:
40
      return EINVAL;
41
  }
42
}

powered by: WebSVN 2.1.0

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