sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 1 | /* |
| 2 | This file is part of drd, a data race detector. |
| 3 | |
sewardj | 8564292 | 2008-01-14 11:54:56 +0000 | [diff] [blame] | 4 | Copyright (C) 2006-2008 Bart Van Assche |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 5 | 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 | |
| 26 | // Mutex state information: owner thread and recursion count. |
| 27 | |
| 28 | |
bart | 777f7fe | 2008-03-02 17:43:18 +0000 | [diff] [blame] | 29 | #ifndef __DRD_MUTEX_H |
| 30 | #define __DRD_MUTEX_H |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 31 | |
| 32 | |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 33 | #include "drd_clientreq.h" // MutexT |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 34 | #include "drd_thread.h" // DrdThreadId |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 35 | #include "drd_vc.h" |
bart | 0268dfa | 2008-03-11 20:10:21 +0000 | [diff] [blame] | 36 | #include "pub_tool_basics.h" // Addr |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 37 | |
| 38 | |
| 39 | struct mutex_info; |
| 40 | |
| 41 | |
| 42 | void mutex_set_trace(const Bool trace_mutex); |
bart | 0268dfa | 2008-03-11 20:10:21 +0000 | [diff] [blame] | 43 | struct mutex_info* mutex_init(const Addr mutex, |
sewardj | 721ad7b | 2007-11-30 08:30:29 +0000 | [diff] [blame] | 44 | const MutexT mutex_type); |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 45 | void mutex_post_destroy(const Addr mutex); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 46 | struct mutex_info* mutex_get(const Addr mutex); |
bart | 2e3a3c1 | 2008-03-24 08:33:47 +0000 | [diff] [blame] | 47 | void mutex_pre_lock(const Addr mutex, const MutexT mutex_type, |
| 48 | const Bool trylock); |
bart | 4a975e1 | 2008-03-30 13:28:33 +0000 | [diff] [blame^] | 49 | void mutex_post_lock(const Addr mutex, const Bool took_lock, |
| 50 | const Bool post_cond_wait); |
bart | 777f7fe | 2008-03-02 17:43:18 +0000 | [diff] [blame] | 51 | void mutex_unlock(const Addr mutex, const MutexT mutex_type); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 52 | const char* mutex_get_typename(struct mutex_info* const p); |
sewardj | 347eeba | 2008-01-21 14:19:07 +0000 | [diff] [blame] | 53 | const char* mutex_type_name(const MutexT mt); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 54 | Bool mutex_is_locked_by(const Addr mutex, const DrdThreadId tid); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 55 | int mutex_get_recursion_count(const Addr mutex); |
bart | 291b369 | 2008-02-24 18:27:11 +0000 | [diff] [blame] | 56 | void mutex_thread_delete(const DrdThreadId tid); |
sewardj | af44c82 | 2007-11-25 14:01:38 +0000 | [diff] [blame] | 57 | ULong get_mutex_lock_count(void); |
| 58 | |
| 59 | |
bart | 777f7fe | 2008-03-02 17:43:18 +0000 | [diff] [blame] | 60 | #endif /* __DRD_MUTEX_H */ |