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