From: Ivan Maidanski Date: Mon, 23 Jan 2012 03:48:48 +0000 (+0400) Subject: Fix a typo in a comment in os_dep.c X-Git-Tag: gc7_3alpha2~202 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=357ec146f5eb64c05b498f8a8f5d2affa2462282;p=gc Fix a typo in a comment in os_dep.c * os_dep.c (GC_sigbus_count): Fix a typo in a comment. --- diff --git a/os_dep.c b/os_dep.c index 3b9fa397..3850b16d 100644 --- a/os_dep.c +++ b/os_dep.c @@ -4071,8 +4071,8 @@ STATIC void *GC_mprotect_thread(void *arg) meaningless and safe to ignore. */ #ifdef BROKEN_EXCEPTION_HANDLING - /* Updates to this aren't atomic, but the SIGBUSs seem pretty rare. */ - /* Even if this doesn't get updated property, it isn't really a proble. */ + /* Updates to this aren't atomic, but the SIGBUS'es seem pretty rare. */ + /* Even if this doesn't get updated property, it isn't really a problem. */ STATIC int GC_sigbus_count = 0; STATIC void GC_darwin_sigbus(int num, siginfo_t *sip, void *context)