blob: fed3f0f2393877be7c4a9b6690c9e6670704b36e [file] [log] [blame]
sewardjaf44c822007-11-25 14:01:38 +00001/*
bart86562bd2009-02-16 19:43:56 +00002 This file is part of drd, a thread error detector.
sewardjaf44c822007-11-25 14:01:38 +00003
bart86562bd2009-02-16 19:43:56 +00004 Copyright (C) 2006-2009 Bart Van Assche <bart.vanassche@gmail.com>.
sewardjaf44c822007-11-25 14:01:38 +00005
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307, USA.
20
21 The GNU General Public License is contained in the file COPYING.
22*/
23
24
bart28230a32008-02-29 17:27:03 +000025#ifndef __DRD_COND_H
26#define __DRD_COND_H
sewardjaf44c822007-11-25 14:01:38 +000027
28
bart46b5fce2008-06-28 13:01:30 +000029#include "drd_thread.h" /* DrdThreadid */
30#include "pub_tool_basics.h" /* Addr */
sewardjaf44c822007-11-25 14:01:38 +000031
32
bart46b5fce2008-06-28 13:01:30 +000033/* Forward declarations. */
34
bart28230a32008-02-29 17:27:03 +000035struct cond_info;
36
sewardjaf44c822007-11-25 14:01:38 +000037
bart46b5fce2008-06-28 13:01:30 +000038/* Function declarations. */
39
bartdc1ef032009-02-15 14:18:02 +000040void DRD_(cond_set_report_signal_unlocked)(const Bool r);
41void DRD_(cond_set_trace)(const Bool trace_cond);
42void DRD_(cond_pre_init)(const Addr cond);
43void DRD_(cond_post_destroy)(const Addr cond);
44int DRD_(cond_pre_wait)(const Addr cond, const Addr mutex);
45int DRD_(cond_post_wait)(const Addr cond);
46void DRD_(cond_pre_signal)(const Addr cond);
47void DRD_(cond_pre_broadcast)(const Addr cond);
48void DRD_(cond_thread_delete)(const DrdThreadId tid);
sewardjaf44c822007-11-25 14:01:38 +000049
50
bart28230a32008-02-29 17:27:03 +000051#endif /* __DRD_COND_H */