summaryrefslogtreecommitdiff
path: root/innobase/include/sync0sync.h
diff options
context:
space:
mode:
authorunknown <marko@hundin.mysql.fi>2004-04-28 17:03:26 +0300
committerunknown <marko@hundin.mysql.fi>2004-04-28 17:03:26 +0300
commit74b70e0d73a6f1d93bb6234c6d2b88e005ee643e (patch)
tree4afd7c9965c4b0f10a47cc5ef48cfba67afc676c /innobase/include/sync0sync.h
parentb825d9b023071039dfbda8324427102533319cb4 (diff)
downloadmariadb-git-74b70e0d73a6f1d93bb6234c6d2b88e005ee643e.tar.gz
InnoDB: make UNIV_SYNC_DEBUG useable again
innobase/include/sync0sync.h: mutex_get_debug_info(): add const qualifier innobase/srv/srv0start.c: Set srv_monitor_file_mutex at level SYNC_NO_ORDER_CHECK innobase/sync/sync0arr.c: sync_array_detect_deadlock(): Remove extraneous declaration of "lock" innobase/sync/sync0sync.c: mutex_get_debug_info(): add const qualifier
Diffstat (limited to 'innobase/include/sync0sync.h')
-rw-r--r--innobase/include/sync0sync.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/include/sync0sync.h b/innobase/include/sync0sync.h
index 38f1489682a..6ac16930583 100644
--- a/innobase/include/sync0sync.h
+++ b/innobase/include/sync0sync.h
@@ -218,7 +218,7 @@ void
mutex_get_debug_info(
/*=================*/
mutex_t* mutex, /* in: mutex */
- char** file_name, /* out: file where requested */
+ const char** file_name, /* out: file where requested */
ulint* line, /* out: line where requested */
os_thread_id_t* thread_id); /* out: id of the thread which owns
the mutex */