From 414c41e7bfd82d784ccecd52227b82e808be45da Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Mon, 11 May 2026 14:03:23 -0400 Subject: [PATCH] OS.h: Drop some unnecessary comments. The first wasn't quite accurate, and the second seems to have been copied from the R5 header. --- headers/os/kernel/OS.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/headers/os/kernel/OS.h b/headers/os/kernel/OS.h index 0c6855587e..dff43f357a 100644 --- a/headers/os/kernel/OS.h +++ b/headers/os/kernel/OS.h @@ -5,7 +5,6 @@ #ifndef _OS_H #define _OS_H -/** Kernel specific structures and functions */ #include #include @@ -412,15 +411,6 @@ extern bigtime_t set_alarm(bigtime_t when, uint32 flags); /* Debugger */ extern void debugger(const char *message); - -/* - calling this function with a non-zero value will cause your thread - to receive signals for any exceptional conditions that occur (i.e. - you'll get SIGSEGV for data access exceptions, SIGFPE for floating - point errors, SIGILL for illegal instructions, etc). - - to re-enable the default debugger pass a zero. -*/ extern int disable_debugger(int state); /* TODO: Remove. Temporary debug helper. */