Blame view

RIOT/sys/posix/pthread/pthread_mutex_attr.c 3.64 KB
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
  /*
   * Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de>
   *
   * This library is free software; you can redistribute it and/or
   * modify it under the terms of the GNU Lesser General Public
   * License as published by the Free Software Foundation; either
   * version 2.1 of the License, or (at your option) any later version.
   *
   * This library is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
   * Lesser General Public License for more details.
   *
   * You should have received a copy of the GNU Lesser General Public
   * License along with this library; if not, write to the Free Software
   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
   */
  
  /**
   * @ingroup pthread
   * @{
   * @file
   * @brief Attributes for pthread mutexes.
   * @author René Kijewski <rene.kijewski@fu-berlin.de>
   * @}
   */
  
  #include "pthread.h"
  
  #include <string.h>
  
  int pthread_mutexattr_init(pthread_mutexattr_t *attr)
  {
      if (attr == NULL) {
          return EINVAL;
      }
  
      memset(attr, 0, sizeof (*attr));
      return 0;
  }
  
  int pthread_mutexattr_destroy(pthread_mutexattr_t *attr)
  {
      if (attr == NULL) {
          return EINVAL;
      }
  
      (void) attr;
      return 0;
  }
  
  int pthread_mutexattr_getpshared(const pthread_mutexattr_t *attr, int *pshared)
  {
      if (attr == NULL || pshared == NULL) {
          return EINVAL;
      }
  
      *pshared = attr->pshared;
      return 0;
  }
  
  int pthread_mutexattr_setpshared(pthread_mutexattr_t *attr, int pshared)
  {
      if (attr == NULL || (pshared != PTHREAD_PROCESS_SHARED &&
                           pshared != PTHREAD_PROCESS_PRIVATE)) {
          return EINVAL;
      }
  
      attr->pshared = pshared;
      return 0;
  }
  
  int pthread_mutexattr_gettype(const pthread_mutexattr_t *attr, int *kind)
  {
      if (attr == NULL || kind == NULL) {
          return EINVAL;
      }
  
      *kind = attr->kind;
      return 0;
  }
  
  int pthread_mutexattr_settype(pthread_mutexattr_t *attr, int kind)
  {
      if (attr == NULL || (kind != PTHREAD_MUTEX_NORMAL &&
                           kind != PTHREAD_MUTEX_RECURSIVE &&
                           kind != PTHREAD_MUTEX_ERRORCHECK)) {
          return EINVAL;
      }
  
      if (kind != PTHREAD_MUTEX_NORMAL) {
          /* only "normal" mutexes are implemented, yet */
          return EINVAL;
      }
  
      attr->kind = kind;
      return 0;
  }
  
  int pthread_mutexattr_getprotocol(const pthread_mutexattr_t *attr, int *protocol)
  {
      if (attr == NULL || protocol == NULL) {
          return EINVAL;
      }
  
      *protocol = attr->protocol;
      return 0;
  }
  
  int pthread_mutexattr_setprotocol(pthread_mutexattr_t *attr, int protocol)
  {
      if (attr == NULL || (protocol != PTHREAD_PRIO_NONE &&
                           protocol != PTHREAD_PRIO_INHERIT &&
                           protocol != PTHREAD_PRIO_PROTECT)) {
          return EINVAL;
      }
  
      if (protocol != PTHREAD_PRIO_NONE) {
          /* priority inheritance is not supported, yet */
          return EINVAL;
      }
  
      attr->protocol = protocol;
      return 0;
  }
  
  int pthread_mutexattr_getrobust(const pthread_mutexattr_t *attr, int *robustness)
  {
      if (attr == NULL || robustness == NULL) {
          return EINVAL;
      }
  
      *robustness = attr->robustness;
      return 0;
  }
  
  int pthread_mutexattr_setrobust(pthread_mutexattr_t *attr, int robustness)
  {
      if (attr == NULL || (robustness != PTHREAD_MUTEX_STALLED &&
                           robustness != PTHREAD_MUTEX_ROBUST)) {
          return EINVAL;
      }
  
      if (robustness != PTHREAD_MUTEX_STALLED) {
          /* robust mutexes are not supported, yet */
          return EINVAL;
      }
  
      attr->robustness = robustness;
      return 0;
  }