diff options
author | unknown <salle@geopard.online.bg> | 2002-07-17 15:17:20 +0300 |
---|---|---|
committer | unknown <salle@geopard.online.bg> | 2002-07-17 15:17:20 +0300 |
commit | 18e0dd1f5200ade6f4a15356fa7ce87b3f8f86bc (patch) | |
tree | e1c40d792aee8685690c05c66852a581466505bf /sql/stacktrace.c | |
parent | 6fbafad20d727c4df3bb74e63399e4eb2e646376 (diff) | |
download | mariadb-git-18e0dd1f5200ade6f4a15356fa7ce87b3f8f86bc.tar.gz |
Some
C++ comments cleanup
sql/stacktrace.c:
C++ comments cleanup
sql/structs.h:
C++ comments cleanup
sql/ha_myisam.h:
C++ comments cleanup
include/config-os2.h:
C++ comments cleanup
include/sslopt-case.h:
C++ comments cleanup
mysys/mf_tempfile.c:
C++ comments cleanup
sql/mysql_priv.h:
C++ comments cleanup
sql/slave.h:
C++ comments cleanup
sql/time.cc:
C++ comments cleanup
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'sql/stacktrace.c')
-rw-r--r-- | sql/stacktrace.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/stacktrace.c b/sql/stacktrace.c index d86d65f567e..1aba73dda33 100644 --- a/sql/stacktrace.c +++ b/sql/stacktrace.c @@ -145,7 +145,7 @@ terribly wrong...\n"); fprintf(stderr, "Warning: Alpha stacks are difficult -\ will be taking some wild guesses, stack trace may be incorrect or \ terminate abruptly\n"); - // On Alpha, we need to get pc + /* On Alpha, we need to get pc */ __asm __volatile__ ("bsr %0, do_next; do_next: " :"=r"(pc) :"r"(pc)); @@ -210,8 +210,8 @@ resolve it\n"); void write_core(int sig) { signal(sig, SIG_DFL); - if (fork() != 0) exit(1); // Abort main program - // Core will be written at exit + if (fork() != 0) exit(1); /* Abort main program */ + /* Core will be written at exit */ } #else void write_core(int sig) |