summaryrefslogtreecommitdiffstats
path: root/src/util/support/threads.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/support/threads.c')
-rw-r--r--src/util/support/threads.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/util/support/threads.c b/src/util/support/threads.c
index c78751bd0..67b7e07c5 100644
--- a/src/util/support/threads.c
+++ b/src/util/support/threads.c
@@ -495,4 +495,21 @@ krb5int_mutex_report_stats(k5_mutex_t *m)
sd_hold);
}
}
+#elif defined _WIN32
+/* On Windows, everything defined in the export list must be defined.
+ The UNIX systems where we're using the export list don't seem to
+ care. */
+void
+krb5int_mutex_lock_update_stats(k5_debug_mutex_stats *m,
+ k5_mutex_stats_tmp startwait)
+{
+}
+void
+krb5int_mutex_unlock_update_stats(k5_debug_mutex_stats *m)
+{
+}
+void
+krb5int_mutex_report_stats(k5_mutex_t *m)
+{
+}
#endif