blob: 71503bc59e6675f59c372faae5d76c14cf9f7619 [file] [log] [blame]
sewardjaf44c822007-11-25 14:01:38 +00001/*
bart86562bd2009-02-16 19:43:56 +00002 This file is part of drd, a thread error detector.
sewardjaf44c822007-11-25 14:01:38 +00003
Elliott Hughesed398002017-06-21 14:41:24 -07004 Copyright (C) 2006-2017 Bart Van Assche <bvanassche@acm.org>.
sewardjaf44c822007-11-25 14:01:38 +00005
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
bart777f7fe2008-03-02 17:43:18 +000025#ifndef __DRD_MUTEX_H
26#define __DRD_MUTEX_H
sewardjaf44c822007-11-25 14:01:38 +000027
28
sewardj721ad7b2007-11-30 08:30:29 +000029#include "drd_clientreq.h" // MutexT
sewardjaf44c822007-11-25 14:01:38 +000030#include "drd_thread.h" // DrdThreadId
bart0268dfa2008-03-11 20:10:21 +000031#include "pub_tool_basics.h" // Addr
sewardjaf44c822007-11-25 14:01:38 +000032
33
34struct mutex_info;
35
36
bartdc1ef032009-02-15 14:18:02 +000037void DRD_(mutex_set_trace)(const Bool trace_mutex);
38void DRD_(mutex_set_lock_threshold)(const UInt lock_threshold_ms);
39struct mutex_info* DRD_(mutex_init)(const Addr mutex, const MutexT mutex_type);
bart3cc26202014-06-09 09:19:26 +000040void DRD_(mutex_ignore_ordering)(const Addr mutex);
bartdc1ef032009-02-15 14:18:02 +000041void DRD_(mutex_post_destroy)(const Addr mutex);
42void DRD_(not_a_mutex)(const Addr mutex);
43struct mutex_info* DRD_(mutex_get)(const Addr mutex);
44void DRD_(mutex_pre_lock)(const Addr mutex, const MutexT mutex_type,
45 const Bool trylock);
46void DRD_(mutex_post_lock)(const Addr mutex, const Bool took_lock,
47 const Bool post_cond_wait);
48void DRD_(mutex_unlock)(const Addr mutex, const MutexT mutex_type);
bart3dbdc862009-02-14 12:14:50 +000049void DRD_(spinlock_init_or_unlock)(const Addr spinlock);
florian19f91bb2012-11-10 22:29:54 +000050const HChar* DRD_(mutex_get_typename)(struct mutex_info* const p);
51const HChar* DRD_(mutex_type_name)(const MutexT mt);
bartdc1ef032009-02-15 14:18:02 +000052Bool DRD_(mutex_is_locked_by)(const Addr mutex, const DrdThreadId tid);
53int DRD_(mutex_get_recursion_count)(const Addr mutex);
bartdc1ef032009-02-15 14:18:02 +000054ULong DRD_(get_mutex_lock_count)(void);
55ULong DRD_(get_mutex_segment_creation_count)(void);
sewardjaf44c822007-11-25 14:01:38 +000056
57
bart777f7fe2008-03-02 17:43:18 +000058#endif /* __DRD_MUTEX_H */