blob: d2e74570818b8e84f6e2a390179fa3809c73a647 [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
bart28230a32008-02-29 17:27:03 +000026#ifndef __DRD_COND_H
27#define __DRD_COND_H
sewardjaf44c822007-11-25 14:01:38 +000028
29
bart46b5fce2008-06-28 13:01:30 +000030#include "drd_thread.h" /* DrdThreadid */
31#include "pub_tool_basics.h" /* Addr */
sewardjaf44c822007-11-25 14:01:38 +000032
33
bart46b5fce2008-06-28 13:01:30 +000034/* Forward declarations. */
35
bart28230a32008-02-29 17:27:03 +000036struct cond_info;
37
sewardjaf44c822007-11-25 14:01:38 +000038
bart46b5fce2008-06-28 13:01:30 +000039/* Function declarations. */
40
bartdc1ef032009-02-15 14:18:02 +000041void DRD_(cond_set_report_signal_unlocked)(const Bool r);
42void DRD_(cond_set_trace)(const Bool trace_cond);
43void DRD_(cond_pre_init)(const Addr cond);
44void DRD_(cond_post_destroy)(const Addr cond);
45int DRD_(cond_pre_wait)(const Addr cond, const Addr mutex);
46int DRD_(cond_post_wait)(const Addr cond);
47void DRD_(cond_pre_signal)(const Addr cond);
48void DRD_(cond_pre_broadcast)(const Addr cond);
49void DRD_(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 */