blob: abe3f4896ec332ed955ac5aa53bc8ed5de3d3453 [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/* Global variables. */
40
41extern Bool s_drd_report_signal_unlocked;
42
43
44/* Function declarations. */
45
sewardjaf44c822007-11-25 14:01:38 +000046void cond_set_trace(const Bool trace_cond);
bart0268dfa2008-03-11 20:10:21 +000047void cond_pre_init(const Addr cond);
bart72b751c2008-03-01 13:44:24 +000048void cond_post_destroy(const Addr cond);
bart0268dfa2008-03-11 20:10:21 +000049int cond_pre_wait(const Addr cond, const Addr mutex);
sewardjaf44c822007-11-25 14:01:38 +000050int cond_post_wait(const Addr cond);
sewardj85642922008-01-14 11:54:56 +000051void cond_pre_signal(const Addr cond);
52void cond_pre_broadcast(const Addr cond);
53void cond_thread_delete(const DrdThreadId tid);
sewardjaf44c822007-11-25 14:01:38 +000054
55
bart28230a32008-02-29 17:27:03 +000056#endif /* __DRD_COND_H */