blob: fafaa31db592f51a1c79714083ab3ce21241329e [file] [log] [blame]
sewardjaf44c822007-11-25 14:01:38 +00001/*
2 This file is part of drd, a data race detector.
3
sewardj85642922008-01-14 11:54:56 +00004 Copyright (C) 2006-2008 Bart Van Assche
sewardjaf44c822007-11-25 14:01:38 +00005 bart.vanassche@gmail.com
6
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
26// Condition variable state information: mutex specified in pthread_cond_wait()
27// call.
28
29
bart28230a32008-02-29 17:27:03 +000030#ifndef __DRD_COND_H
31#define __DRD_COND_H
sewardjaf44c822007-11-25 14:01:38 +000032
33
bart28230a32008-02-29 17:27:03 +000034#include "drd_thread.h" // DrdThreadid
35#include "pub_tool_basics.h" // Addr, SizeT
sewardjaf44c822007-11-25 14:01:38 +000036
37
bart28230a32008-02-29 17:27:03 +000038struct cond_info;
39
sewardjaf44c822007-11-25 14:01:38 +000040
41void cond_set_trace(const Bool trace_cond);
sewardj721ad7b2007-11-30 08:30:29 +000042void cond_init(const Addr cond, const SizeT size);
sewardjaf44c822007-11-25 14:01:38 +000043void cond_destroy(struct cond_info* const p);
sewardj85642922008-01-14 11:54:56 +000044struct cond_info* cond_get(const Addr mutex);
sewardj721ad7b2007-11-30 08:30:29 +000045int cond_pre_wait(const Addr cond, const SizeT cond_size, const Addr mutex);
sewardjaf44c822007-11-25 14:01:38 +000046int cond_post_wait(const Addr cond);
sewardj85642922008-01-14 11:54:56 +000047void cond_pre_signal(const Addr cond);
48void cond_pre_broadcast(const Addr cond);
49void cond_thread_delete(const DrdThreadId tid);
sewardjaf44c822007-11-25 14:01:38 +000050
51
bart28230a32008-02-29 17:27:03 +000052#endif /* __DRD_COND_H */