blob: 0b7065f2eb8b20c8e137035cf0cfc7ea0772b39c [file] [log] [blame]
bart922304f2011-03-13 12:02:44 +00001/* -*- mode: C; c-basic-offset: 3; indent-tabs-mode: nil; -*- */
sewardj85642922008-01-14 11:54:56 +00002/*
bart86562bd2009-02-16 19:43:56 +00003 This file is part of drd, a thread error detector.
sewardj85642922008-01-14 11:54:56 +00004
bart922304f2011-03-13 12:02:44 +00005 Copyright (C) 2006-2011 Bart Van Assche <bvanassche@acm.org>.
sewardj85642922008-01-14 11:54:56 +00006
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307, USA.
21
22 The GNU General Public License is contained in the file COPYING.
23*/
24
25
bart28230a32008-02-29 17:27:03 +000026#include "drd_clientobj.h"
sewardj85642922008-01-14 11:54:56 +000027#include "drd_error.h"
28#include "drd_semaphore.h"
29#include "drd_suppression.h"
sewardj85642922008-01-14 11:54:56 +000030#include "pub_tool_errormgr.h" // VG_(maybe_record_error)()
31#include "pub_tool_libcassert.h" // tl_assert()
32#include "pub_tool_libcprint.h" // VG_(printf)()
33#include "pub_tool_machine.h" // VG_(get_IP)()
bart3e017fa2008-12-17 19:20:13 +000034#include "pub_tool_mallocfree.h" // VG_(malloc), VG_(free)
sewardj85642922008-01-14 11:54:56 +000035#include "pub_tool_threadstate.h" // VG_(get_running_tid)()
36
37
bartdc1ef032009-02-15 14:18:02 +000038/* Local functions. */
sewardj85642922008-01-14 11:54:56 +000039
bartd2c5eae2009-02-21 15:27:04 +000040static void semaphore_cleanup(struct semaphore_info* p);
sewardj85642922008-01-14 11:54:56 +000041
42
bartdc1ef032009-02-15 14:18:02 +000043/* Local variables. */
sewardj85642922008-01-14 11:54:56 +000044
bartd2c5eae2009-02-21 15:27:04 +000045static Bool s_trace_semaphore;
46static ULong s_semaphore_segment_creation_count;
sewardj85642922008-01-14 11:54:56 +000047
48
bartdc1ef032009-02-15 14:18:02 +000049/* Function definitions. */
sewardj85642922008-01-14 11:54:56 +000050
bartdc1ef032009-02-15 14:18:02 +000051/** Push a segment at the end of the queue 'p->last_sem_post_seg'. */
bart25f9f542009-07-23 16:31:39 +000052static void drd_segment_push(struct semaphore_info* p, Segment* sg)
bart3e017fa2008-12-17 19:20:13 +000053{
bartbedfd232009-03-26 19:07:15 +000054 Word n;
bart3e017fa2008-12-17 19:20:13 +000055
bartbedfd232009-03-26 19:07:15 +000056 tl_assert(sg);
57 n = VG_(addToXA)(p->last_sem_post_seg, &sg);
bart3e017fa2008-12-17 19:20:13 +000058#if 0
bart352db6d2011-10-08 08:56:27 +000059 VG_(message)(Vg_DebugMsg, "0x%lx push: added at position %ld/%ld",
bartbedfd232009-03-26 19:07:15 +000060 p->a1, n, VG_(sizeXA)(p->last_sem_post_seg));
bart3e017fa2008-12-17 19:20:13 +000061#endif
bartbedfd232009-03-26 19:07:15 +000062 tl_assert(*(Segment**)VG_(indexXA)(p->last_sem_post_seg, n) == sg);
bart3e017fa2008-12-17 19:20:13 +000063}
64
bartdc1ef032009-02-15 14:18:02 +000065/** Pop a segment from the beginning of the queue 'p->last_sem_post_seg'. */
bart25f9f542009-07-23 16:31:39 +000066static Segment* drd_segment_pop(struct semaphore_info* p)
bart3e017fa2008-12-17 19:20:13 +000067{
bartbedfd232009-03-26 19:07:15 +000068 Word sz;
69 Segment* sg;
bart3e017fa2008-12-17 19:20:13 +000070
bartbedfd232009-03-26 19:07:15 +000071 sz = VG_(sizeXA)(p->last_sem_post_seg);
bart3e017fa2008-12-17 19:20:13 +000072#if 0
bart352db6d2011-10-08 08:56:27 +000073 VG_(message)(Vg_DebugMsg, "0x%lx pop: removed from position %ld/%ld",
bartbedfd232009-03-26 19:07:15 +000074 p->a1, sz - 1, sz);
bart3e017fa2008-12-17 19:20:13 +000075#endif
bartbedfd232009-03-26 19:07:15 +000076 sg = 0;
77 if (sz > 0)
78 {
79 sg = *(Segment**)VG_(indexXA)(p->last_sem_post_seg, sz - 1);
80 tl_assert(sg);
81 VG_(dropTailXA)(p->last_sem_post_seg, 1);
82 }
83 return sg;
bart3e017fa2008-12-17 19:20:13 +000084}
85
bartdc1ef032009-02-15 14:18:02 +000086/** Enable or disable tracing of semaphore actions. */
87void DRD_(semaphore_set_trace)(const Bool trace_semaphore)
sewardj85642922008-01-14 11:54:56 +000088{
bartbedfd232009-03-26 19:07:15 +000089 s_trace_semaphore = trace_semaphore;
sewardj85642922008-01-14 11:54:56 +000090}
91
bartdc1ef032009-02-15 14:18:02 +000092/**
93 * Initialize the memory 'p' points at as a semaphore_info structure for the
94 * client semaphore at client addres 'semaphore'.
95 */
sewardj85642922008-01-14 11:54:56 +000096static
bart25f9f542009-07-23 16:31:39 +000097void drd_semaphore_initialize(struct semaphore_info* const p,
98 const Addr semaphore)
sewardj85642922008-01-14 11:54:56 +000099{
bartbedfd232009-03-26 19:07:15 +0000100 tl_assert(semaphore != 0);
101 tl_assert(p->a1 == semaphore);
102 tl_assert(p->type == ClientSemaphore);
sewardj85642922008-01-14 11:54:56 +0000103
bartbedfd232009-03-26 19:07:15 +0000104 p->cleanup = (void(*)(DrdClientobj*))semaphore_cleanup;
105 p->delete_thread = 0;
106 p->waits_to_skip = 0;
107 p->value = 0;
108 p->waiters = 0;
109 p->last_sem_post_tid = DRD_INVALID_THREADID;
110 p->last_sem_post_seg = VG_(newXA)(VG_(malloc), "drd.sg-stack",
111 VG_(free), sizeof(Segment*));
sewardj85642922008-01-14 11:54:56 +0000112}
113
bart195e41f2009-02-15 11:34:57 +0000114/**
115 * Free the memory that was allocated by semaphore_initialize(). Called by
116 * DRD_(clientobj_remove)().
bart28230a32008-02-29 17:27:03 +0000117 */
bartd2c5eae2009-02-21 15:27:04 +0000118static void semaphore_cleanup(struct semaphore_info* p)
bart28230a32008-02-29 17:27:03 +0000119{
bartbedfd232009-03-26 19:07:15 +0000120 Segment* sg;
bart3e017fa2008-12-17 19:20:13 +0000121
bartbedfd232009-03-26 19:07:15 +0000122 if (p->waiters > 0)
123 {
bartd45d9952009-05-31 18:53:54 +0000124 SemaphoreErrInfo sei = { DRD_(thread_get_running_tid)(), p->a1 };
bartbedfd232009-03-26 19:07:15 +0000125 VG_(maybe_record_error)(VG_(get_running_tid)(),
126 SemaphoreErr,
127 VG_(get_IP)(VG_(get_running_tid)()),
128 "Destruction of semaphore that is being waited"
129 " upon",
130 &sei);
131 }
bart25f9f542009-07-23 16:31:39 +0000132 while ((sg = drd_segment_pop(p)))
bartbedfd232009-03-26 19:07:15 +0000133 DRD_(sg_put)(sg);
134 VG_(deleteXA)(p->last_sem_post_seg);
bart28230a32008-02-29 17:27:03 +0000135}
136
bartdc1ef032009-02-15 14:18:02 +0000137/**
138 * Return a pointer to the structure with information about the specified
139 * client semaphore. Allocate a new structure if such a structure did not
140 * yet exist.
141 */
sewardj85642922008-01-14 11:54:56 +0000142static
143struct semaphore_info*
bart25f9f542009-07-23 16:31:39 +0000144drd_semaphore_get_or_allocate(const Addr semaphore)
sewardj85642922008-01-14 11:54:56 +0000145{
bartbedfd232009-03-26 19:07:15 +0000146 struct semaphore_info *p;
sewardj85642922008-01-14 11:54:56 +0000147
bartbedfd232009-03-26 19:07:15 +0000148 tl_assert(offsetof(DrdClientobj, semaphore) == 0);
149 p = &(DRD_(clientobj_get)(semaphore, ClientSemaphore)->semaphore);
150 if (p == 0)
151 {
152 tl_assert(offsetof(DrdClientobj, semaphore) == 0);
153 p = &(DRD_(clientobj_add)(semaphore, ClientSemaphore)->semaphore);
bart25f9f542009-07-23 16:31:39 +0000154 drd_semaphore_initialize(p, semaphore);
bartbedfd232009-03-26 19:07:15 +0000155 }
156 return p;
sewardj85642922008-01-14 11:54:56 +0000157}
158
bartdc1ef032009-02-15 14:18:02 +0000159/**
160 * Return a pointer to the structure with information about the specified
161 * client semaphore, or null if no such structure was found.
162 */
bartd45d9952009-05-31 18:53:54 +0000163static struct semaphore_info* semaphore_get(const Addr semaphore)
bart28230a32008-02-29 17:27:03 +0000164{
bartbedfd232009-03-26 19:07:15 +0000165 tl_assert(offsetof(DrdClientobj, semaphore) == 0);
166 return &(DRD_(clientobj_get)(semaphore, ClientSemaphore)->semaphore);
bart28230a32008-02-29 17:27:03 +0000167}
168
169/** Called before sem_init(). */
bartdc1ef032009-02-15 14:18:02 +0000170struct semaphore_info* DRD_(semaphore_init)(const Addr semaphore,
171 const Word pshared,
172 const UInt value)
sewardj85642922008-01-14 11:54:56 +0000173{
bartbedfd232009-03-26 19:07:15 +0000174 struct semaphore_info* p;
175 Segment* sg;
sewardj85642922008-01-14 11:54:56 +0000176
bartbedfd232009-03-26 19:07:15 +0000177 if (s_trace_semaphore)
bartad994e82011-10-13 18:04:30 +0000178 DRD_(trace_msg)("[%d] sem_init 0x%lx value %u",
bartb92ff0f2011-10-08 08:29:29 +0000179 DRD_(thread_get_running_tid)(), semaphore, value);
180
bartd45d9952009-05-31 18:53:54 +0000181 p = semaphore_get(semaphore);
bartbedfd232009-03-26 19:07:15 +0000182 if (p)
183 {
184 const ThreadId vg_tid = VG_(get_running_tid)();
bartd45d9952009-05-31 18:53:54 +0000185 SemaphoreErrInfo SEI = { DRD_(thread_get_running_tid)(), semaphore };
bartbedfd232009-03-26 19:07:15 +0000186 VG_(maybe_record_error)(vg_tid,
187 SemaphoreErr,
188 VG_(get_IP)(vg_tid),
189 "Semaphore reinitialization",
190 &SEI);
191 // Remove all segments from the segment stack.
bart25f9f542009-07-23 16:31:39 +0000192 while ((sg = drd_segment_pop(p)))
bartbedfd232009-03-26 19:07:15 +0000193 {
194 DRD_(sg_put)(sg);
195 }
196 }
197 else
198 {
bartb7037bb2009-07-23 17:52:51 +0000199#if defined(VGO_darwin)
200 const ThreadId vg_tid = VG_(get_running_tid)();
barta9d292e2011-03-05 09:05:47 +0000201 GenericErrInfo GEI = { DRD_(thread_get_running_tid)(), 0 };
bartb7037bb2009-07-23 17:52:51 +0000202 VG_(maybe_record_error)(vg_tid,
203 GenericErr,
204 VG_(get_IP)(vg_tid),
205 "sem_init() is not yet supported on Darwin",
206 &GEI);
207 return NULL;
208#else
bart25f9f542009-07-23 16:31:39 +0000209 p = drd_semaphore_get_or_allocate(semaphore);
bartb7037bb2009-07-23 17:52:51 +0000210#endif
bartbedfd232009-03-26 19:07:15 +0000211 }
212 tl_assert(p);
213 p->waits_to_skip = value;
214 p->value = value;
215 return p;
sewardj85642922008-01-14 11:54:56 +0000216}
217
bart28230a32008-02-29 17:27:03 +0000218/** Called after sem_destroy(). */
bartdc1ef032009-02-15 14:18:02 +0000219void DRD_(semaphore_destroy)(const Addr semaphore)
sewardj85642922008-01-14 11:54:56 +0000220{
bartbedfd232009-03-26 19:07:15 +0000221 struct semaphore_info* p;
bart3b1ee452008-02-29 19:28:15 +0000222
bartd45d9952009-05-31 18:53:54 +0000223 p = semaphore_get(semaphore);
bartda9436b2008-12-14 08:56:49 +0000224
bartbedfd232009-03-26 19:07:15 +0000225 if (s_trace_semaphore)
bartad994e82011-10-13 18:04:30 +0000226 DRD_(trace_msg)("[%d] sem_destroy 0x%lx value %u",
bartb92ff0f2011-10-08 08:29:29 +0000227 DRD_(thread_get_running_tid)(), semaphore,
228 p ? p->value : 0);
bart3b1ee452008-02-29 19:28:15 +0000229
bartbedfd232009-03-26 19:07:15 +0000230 if (p == 0)
231 {
bart62cc2322010-03-07 10:54:21 +0000232 GenericErrInfo GEI = {
233 .tid = DRD_(thread_get_running_tid)(),
234 .addr = semaphore,
235 };
bartbedfd232009-03-26 19:07:15 +0000236 VG_(maybe_record_error)(VG_(get_running_tid)(),
237 GenericErr,
238 VG_(get_IP)(VG_(get_running_tid)()),
239 "Not a semaphore",
240 &GEI);
241 return;
242 }
bart72b751c2008-03-01 13:44:24 +0000243
bartbedfd232009-03-26 19:07:15 +0000244 DRD_(clientobj_remove)(semaphore, ClientSemaphore);
sewardj85642922008-01-14 11:54:56 +0000245}
246
bart25f9f542009-07-23 16:31:39 +0000247/** Called after sem_open(). */
248struct semaphore_info* DRD_(semaphore_open)(const Addr semaphore,
249 const Char* name, const Word oflag,
250 const Word mode, const UInt value)
251{
252 struct semaphore_info* p;
253 Segment* sg;
254
255 if (s_trace_semaphore)
bartb92ff0f2011-10-08 08:29:29 +0000256 DRD_(trace_msg)("[%d] sem_open 0x%lx name %s"
bartad994e82011-10-13 18:04:30 +0000257 " oflag %#lx mode %#lo value %u",
bartb92ff0f2011-10-08 08:29:29 +0000258 DRD_(thread_get_running_tid)(),
259 semaphore, name, oflag, mode, value);
bart25f9f542009-07-23 16:31:39 +0000260
261 /* Return if the sem_open() call failed. */
262 if (! semaphore)
263 return NULL;
264
265 p = semaphore_get(semaphore);
266 if (p)
267 {
268 const ThreadId vg_tid = VG_(get_running_tid)();
269 SemaphoreErrInfo SEI = { DRD_(thread_get_running_tid)(), semaphore };
270 VG_(maybe_record_error)(vg_tid,
271 SemaphoreErr,
272 VG_(get_IP)(vg_tid),
273 "Semaphore reinitialization",
274 &SEI);
275 // Remove all segments from the segment stack.
276 while ((sg = drd_segment_pop(p)))
277 {
278 DRD_(sg_put)(sg);
279 }
280 }
281 else
282 {
283 p = drd_semaphore_get_or_allocate(semaphore);
284 }
285 tl_assert(p);
286 p->waits_to_skip = value;
287 p->value = value;
288 return p;
289}
290
291/** Called before sem_close(). */
292void DRD_(semaphore_close)(const Addr semaphore)
293{
294 struct semaphore_info* p;
295
296 p = semaphore_get(semaphore);
297
298 if (s_trace_semaphore)
bartad994e82011-10-13 18:04:30 +0000299 DRD_(trace_msg)("[%d] sem_close 0x%lx value %u",
bartb92ff0f2011-10-08 08:29:29 +0000300 DRD_(thread_get_running_tid)(), semaphore,
301 p ? p->value : 0);
bart25f9f542009-07-23 16:31:39 +0000302
303 if (p == 0)
304 {
bart62cc2322010-03-07 10:54:21 +0000305 GenericErrInfo GEI = {
306 .tid = DRD_(thread_get_running_tid)(),
307 .addr = semaphore,
308 };
bart25f9f542009-07-23 16:31:39 +0000309 VG_(maybe_record_error)(VG_(get_running_tid)(),
310 GenericErr,
311 VG_(get_IP)(VG_(get_running_tid)()),
312 "Not a semaphore",
313 &GEI);
314 return;
315 }
316
317 DRD_(clientobj_remove)(semaphore, ClientSemaphore);
318}
319
bart28230a32008-02-29 17:27:03 +0000320/** Called before sem_wait(). */
bartdc1ef032009-02-15 14:18:02 +0000321void DRD_(semaphore_pre_wait)(const Addr semaphore)
sewardj85642922008-01-14 11:54:56 +0000322{
bartbedfd232009-03-26 19:07:15 +0000323 struct semaphore_info* p;
sewardj85642922008-01-14 11:54:56 +0000324
bart7a06e122010-05-13 08:10:52 +0000325 tl_assert(semaphore < semaphore + 1);
bart25f9f542009-07-23 16:31:39 +0000326 p = drd_semaphore_get_or_allocate(semaphore);
bartbedfd232009-03-26 19:07:15 +0000327 tl_assert(p);
bartbedfd232009-03-26 19:07:15 +0000328 p->waiters++;
bart3eecd9a2009-06-06 12:28:20 +0000329
bart9986c992009-07-23 07:11:27 +0000330 if ((Word)(p->waiters) <= 0)
bart3eecd9a2009-06-06 12:28:20 +0000331 {
332 SemaphoreErrInfo sei = { DRD_(thread_get_running_tid)(), semaphore };
333 VG_(maybe_record_error)(VG_(get_running_tid)(),
334 SemaphoreErr,
335 VG_(get_IP)(VG_(get_running_tid)()),
336 "Invalid semaphore",
337 &sei);
338 }
bart28230a32008-02-29 17:27:03 +0000339}
340
bartdc1ef032009-02-15 14:18:02 +0000341/**
342 * Called after sem_wait() finished.
343 * @note Do not rely on the value of 'waited' -- some glibc versions do
344 * not set it correctly.
bart28230a32008-02-29 17:27:03 +0000345 */
bartdc1ef032009-02-15 14:18:02 +0000346void DRD_(semaphore_post_wait)(const DrdThreadId tid, const Addr semaphore,
347 const Bool waited)
bart28230a32008-02-29 17:27:03 +0000348{
bartbedfd232009-03-26 19:07:15 +0000349 struct semaphore_info* p;
350 Segment* sg;
bart28230a32008-02-29 17:27:03 +0000351
bartd45d9952009-05-31 18:53:54 +0000352 p = semaphore_get(semaphore);
bartbedfd232009-03-26 19:07:15 +0000353 if (s_trace_semaphore)
bartad994e82011-10-13 18:04:30 +0000354 DRD_(trace_msg)("[%d] sem_wait 0x%lx value %u -> %u",
bartb92ff0f2011-10-08 08:29:29 +0000355 DRD_(thread_get_running_tid)(), semaphore,
356 p ? p->value : 0, p ? p->value - 1 : 0);
bart57ae7ad2009-06-06 10:56:40 +0000357
358 if (p)
359 {
360 p->waiters--;
361 p->value--;
362 }
363
364 /*
365 * Note: if another thread destroyed and reinitialized a semaphore while
366 * the current thread was waiting in sem_wait, p->waiters may have been
bart25f9f542009-07-23 16:31:39 +0000367 * set to zero by drd_semaphore_initialize() after
bart57ae7ad2009-06-06 10:56:40 +0000368 * DRD_(semaphore_pre_wait)() has finished before
369 * DRD_(semaphore_post_wait)() has been called.
370 */
bart9986c992009-07-23 07:11:27 +0000371 if (p == NULL || (Int)(p->value) < 0 || (Word)(p->waiters) < 0)
bartbedfd232009-03-26 19:07:15 +0000372 {
bartd45d9952009-05-31 18:53:54 +0000373 SemaphoreErrInfo sei = { DRD_(thread_get_running_tid)(), semaphore };
bartbedfd232009-03-26 19:07:15 +0000374 VG_(maybe_record_error)(VG_(get_running_tid)(),
375 SemaphoreErr,
376 VG_(get_IP)(VG_(get_running_tid)()),
377 "Invalid semaphore",
378 &sei);
379 return;
380 }
bart57ae7ad2009-06-06 10:56:40 +0000381
bartbedfd232009-03-26 19:07:15 +0000382 if (p->waits_to_skip > 0)
383 p->waits_to_skip--;
384 else
385 {
bart25f9f542009-07-23 16:31:39 +0000386 sg = drd_segment_pop(p);
bartbedfd232009-03-26 19:07:15 +0000387 tl_assert(sg);
bart7a2cc3c2011-04-30 07:27:41 +0000388 if (p->last_sem_post_tid != tid
389 && p->last_sem_post_tid != DRD_INVALID_THREADID)
bart94866cc2008-12-21 17:20:22 +0000390 {
bart7a2cc3c2011-04-30 07:27:41 +0000391 DRD_(thread_new_segment_and_combine_vc)(tid, sg);
bart94866cc2008-12-21 17:20:22 +0000392 }
bart7a2cc3c2011-04-30 07:27:41 +0000393 else
394 DRD_(thread_new_segment)(tid);
395 s_semaphore_segment_creation_count++;
396 DRD_(sg_put)(sg);
bartbedfd232009-03-26 19:07:15 +0000397 }
sewardj85642922008-01-14 11:54:56 +0000398}
399
400/** Called before sem_post(). */
bartdc1ef032009-02-15 14:18:02 +0000401void DRD_(semaphore_pre_post)(const DrdThreadId tid, const Addr semaphore)
sewardj85642922008-01-14 11:54:56 +0000402{
bartbedfd232009-03-26 19:07:15 +0000403 struct semaphore_info* p;
404 Segment* sg;
sewardj85642922008-01-14 11:54:56 +0000405
bart25f9f542009-07-23 16:31:39 +0000406 p = drd_semaphore_get_or_allocate(semaphore);
bartbedfd232009-03-26 19:07:15 +0000407 p->value++;
bartda9436b2008-12-14 08:56:49 +0000408
bartbedfd232009-03-26 19:07:15 +0000409 if (s_trace_semaphore)
bartad994e82011-10-13 18:04:30 +0000410 DRD_(trace_msg)("[%d] sem_post 0x%lx value %u -> %u",
bartb92ff0f2011-10-08 08:29:29 +0000411 DRD_(thread_get_running_tid)(),
412 semaphore, p->value - 1, p->value);
bartda9436b2008-12-14 08:56:49 +0000413
bartbedfd232009-03-26 19:07:15 +0000414 p->last_sem_post_tid = tid;
bartbedfd232009-03-26 19:07:15 +0000415 sg = 0;
416 DRD_(thread_get_latest_segment)(&sg, tid);
417 tl_assert(sg);
bart25f9f542009-07-23 16:31:39 +0000418 drd_segment_push(p, sg);
bartc02dde42009-06-06 09:28:28 +0000419 DRD_(thread_new_segment)(tid);
bartbedfd232009-03-26 19:07:15 +0000420 s_semaphore_segment_creation_count++;
sewardj85642922008-01-14 11:54:56 +0000421}
422
bartd45d9952009-05-31 18:53:54 +0000423/** Called after sem_post() finished. */
bartdc1ef032009-02-15 14:18:02 +0000424void DRD_(semaphore_post_post)(const DrdThreadId tid, const Addr semaphore,
bartd45d9952009-05-31 18:53:54 +0000425 const Bool succeeded)
sewardj85642922008-01-14 11:54:56 +0000426{
bartd45d9952009-05-31 18:53:54 +0000427 /*
bart31b983d2010-02-21 14:52:59 +0000428 * Note: it is hard to implement the sem_post() wrapper correctly in
429 * case sem_post() returns an error code. This is because handling this
430 * case correctly requires restoring the vector clock associated with
bartd45d9952009-05-31 18:53:54 +0000431 * the semaphore to its original value here. In order to do that without
bart31b983d2010-02-21 14:52:59 +0000432 * introducing a race condition, extra locking has to be added around
433 * each semaphore call. Such extra locking would have to be added in
bartd45d9952009-05-31 18:53:54 +0000434 * drd_pthread_intercepts.c. However, it is hard to implement
435 * synchronization in drd_pthread_intercepts.c in a portable way without
436 * calling already redirected functions.
437 */
sewardj85642922008-01-14 11:54:56 +0000438}
439
bartdc1ef032009-02-15 14:18:02 +0000440ULong DRD_(get_semaphore_segment_creation_count)(void)
bart6bbefaf2008-04-19 15:16:45 +0000441{
bartbedfd232009-03-26 19:07:15 +0000442 return s_semaphore_segment_creation_count;
bart6bbefaf2008-04-19 15:16:45 +0000443}