aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--mach/mach/mach_traps.h5
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 12ac302..c07772e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-06-09 Samuel Thibault <samuel.thibault@ens-lyon.org
+
+ * mach/mach/mach_traps.h (mach_print): Add syscall declaration.
+
2016-06-08 Joseph Myers <joseph@codesourcery.com>
[BZ #20229]
diff --git a/mach/mach/mach_traps.h b/mach/mach/mach_traps.h
index 10dd370..614a887 100644
--- a/mach/mach/mach_traps.h
+++ b/mach/mach/mach_traps.h
@@ -75,5 +75,10 @@ kern_return_t __thread_switch (mach_port_t new_thread,
kern_return_t evc_wait (unsigned int event);
kern_return_t __evc_wait (unsigned int event);
+/* Display a null-terminated character string on the Mach console. This
+ system call is meant as a debugging tool useful to circumvent messaging
+ altogether. */
+
+extern void mach_print(const char *s);
#endif /* mach/mach_traps.h */