blob: be98b96cf5dfce1b6251f7b79a658d1c6cb3db72 [file] [log] [blame]
bartbedfd232009-03-26 19:07:15 +00001/* -*- mode: C; c-basic-offset: 3; -*- */
sewardjaf44c822007-11-25 14:01:38 +00002/*
bart86562bd2009-02-16 19:43:56 +00003 This file is part of drd, a thread error detector.
sewardjaf44c822007-11-25 14:01:38 +00004
bart86562bd2009-02-16 19:43:56 +00005 Copyright (C) 2006-2009 Bart Van Assche <bart.vanassche@gmail.com>.
sewardjaf44c822007-11-25 14:01:38 +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#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);
bartd45d9952009-05-31 18:53:54 +000043struct cond_info* DRD_(cond_get)(const Addr cond);
bartdc1ef032009-02-15 14:18:02 +000044void DRD_(cond_pre_init)(const Addr cond);
45void DRD_(cond_post_destroy)(const Addr cond);
46int DRD_(cond_pre_wait)(const Addr cond, const Addr mutex);
47int DRD_(cond_post_wait)(const Addr cond);
48void DRD_(cond_pre_signal)(const Addr cond);
49void DRD_(cond_pre_broadcast)(const Addr cond);
sewardjaf44c822007-11-25 14:01:38 +000050
51
bart28230a32008-02-29 17:27:03 +000052#endif /* __DRD_COND_H */