* src/vm/jit/x86_64/md.c (md_signal_handler_sigsegv)
authortwisti <none@none>
Tue, 28 Mar 2006 14:31:53 +0000 (14:31 +0000)
committertwisti <none@none>
Tue, 28 Mar 2006 14:31:53 +0000 (14:31 +0000)
(md_signal_handler_sigfpe): Comment changes.

src/vm/jit/x86_64/md.c

index e3ac3cc31a0bb99b8bdfd424000dfb07c88ad7fc..b5ed97d497dd58d8a75b374e75dedd59c82d8a38 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes: Edwin Steiner
 
-   $Id: md.c 4673 2006-03-22 15:30:06Z edwin $
+   $Id: md.c 4698 2006-03-28 14:31:53Z twisti $
 
 */
 
@@ -83,8 +83,8 @@ void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
        _uc = (ucontext_t *) _p;
        _mc = &_uc->uc_mcontext;
 
-       /* ATTENTION: don't use CACAO internal REG_* defines as they are          */
-       /* different to the ones in <ucontext.h>                                  */
+       /* ATTENTION: Don't use CACAO's internal REG_* defines as they are
+          different to the ones in <ucontext.h>. */
 
        sp  = (u1 *) _mc->gregs[REG_RSP];
        xpc = (u1 *) _mc->gregs[REG_RIP];
@@ -116,8 +116,8 @@ void md_signal_handler_sigfpe(int sig, siginfo_t *siginfo, void *_p)
        _uc = (ucontext_t *) _p;
        _mc = &_uc->uc_mcontext;
 
-       /* ATTENTION: don't use CACAO internal REG_* defines as they are          */
-       /* different to the ones in <ucontext.h>                                  */
+       /* ATTENTION: Don't use CACAO's internal REG_* defines as they are
+          different to the ones in <ucontext.h>. */
 
        sp  = (u1 *) _mc->gregs[REG_RSP];
        xpc = (u1 *) _mc->gregs[REG_RIP];