bart | 922304f | 2011-03-13 12:02:44 +0000 | [diff] [blame] | 1 | /* -*- mode: C; c-basic-offset: 3; indent-tabs-mode: nil; -*- */ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 2 | /* |
bart | 86562bd | 2009-02-16 19:43:56 +0000 | [diff] [blame] | 3 | This file is part of drd, a thread error detector. |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 4 | |
bart | 922304f | 2011-03-13 12:02:44 +0000 | [diff] [blame] | 5 | Copyright (C) 2006-2011 Bart Van Assche <bvanassche@acm.org>. |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 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 | |
bart | 28230a3 | 2008-02-29 17:27:03 +0000 | [diff] [blame] | 26 | #ifndef __DRD_COND_H |
| 27 | #define __DRD_COND_H |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 28 | |
| 29 | |
bart | 46b5fce | 2008-06-28 13:01:30 +0000 | [diff] [blame] | 30 | #include "drd_thread.h" /* DrdThreadid */ |
| 31 | #include "pub_tool_basics.h" /* Addr */ |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 32 | |
| 33 | |
bart | 46b5fce | 2008-06-28 13:01:30 +0000 | [diff] [blame] | 34 | /* Forward declarations. */ |
| 35 | |
bart | 28230a3 | 2008-02-29 17:27:03 +0000 | [diff] [blame] | 36 | struct cond_info; |
| 37 | |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 38 | |
bart | 850f199 | 2010-05-29 18:43:21 +0000 | [diff] [blame] | 39 | /* Variable declarations. */ |
| 40 | |
| 41 | extern Addr DRD_(pthread_cond_initializer); |
| 42 | extern int DRD_(pthread_cond_initializer_size); |
| 43 | |
| 44 | |
bart | 46b5fce | 2008-06-28 13:01:30 +0000 | [diff] [blame] | 45 | /* Function declarations. */ |
| 46 | |
bart | dc1ef03 | 2009-02-15 14:18:02 +0000 | [diff] [blame] | 47 | void DRD_(cond_set_report_signal_unlocked)(const Bool r); |
| 48 | void DRD_(cond_set_trace)(const Bool trace_cond); |
bart | d45d995 | 2009-05-31 18:53:54 +0000 | [diff] [blame] | 49 | struct cond_info* DRD_(cond_get)(const Addr cond); |
bart | dc1ef03 | 2009-02-15 14:18:02 +0000 | [diff] [blame] | 50 | void DRD_(cond_pre_init)(const Addr cond); |
| 51 | void DRD_(cond_post_destroy)(const Addr cond); |
bart | 62cc232 | 2010-03-07 10:54:21 +0000 | [diff] [blame] | 52 | void DRD_(cond_pre_wait)(const Addr cond, const Addr mutex); |
| 53 | void DRD_(cond_post_wait)(const Addr cond); |
bart | dc1ef03 | 2009-02-15 14:18:02 +0000 | [diff] [blame] | 54 | void DRD_(cond_pre_signal)(const Addr cond); |
| 55 | void DRD_(cond_pre_broadcast)(const Addr cond); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 56 | |
| 57 | |
bart | 28230a3 | 2008-02-29 17:27:03 +0000 | [diff] [blame] | 58 | #endif /* __DRD_COND_H */ |