summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Docs/manual.texi10
-rw-r--r--extra/resolve_stack_dump.c4
2 files changed, 10 insertions, 4 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi
index a0fa082ae3f..8496d0c6636 100644
--- a/Docs/manual.texi
+++ b/Docs/manual.texi
@@ -28646,7 +28646,8 @@ already in production.
To avoid problems like this, you should put some effort into benchmarking
your whole application under the worst possible load! You can use Sasha's
recent hack for this -
-@uref{http://www.mysql.com/Downloads/Contrib/mysql-bench-0.6.tar.gz, mysql-super-smack}.
+@uref{http://www.mysql.com/Downloads/super-smack/super-smack-1.0.tar.gz,
+super-smack}.
As the name suggests, it can bring your system down to its knees if you ask it,
so make sure to use it only on your developement systems.
@@ -40226,8 +40227,11 @@ Full-text searching with Perl on @code{BLOB}/@code{TEXT} columns by Daniel Koch.
@appendixsec Performance Benchmarking Tools
@itemize @bullet
-@item @uref{http://www.mysql.com/Downloads/Contrib/mysql-bench-0.6.tar.gz, mysql-super-smack and friends}
-User-customizable multi-threaded tool set to benchmark @strong{MySQL}. By Sasha Pachev.
+@item @uref{http://www.mysql.com/Downloads/super-smack/super-smack-1.0.tar.gz,
+ super-smack}
+Multi-threaded benchmarking tool for @strong{MySQL} and
+@strong{PostgreSQL}. Written in C++. Easy to extend to support other
+databases that have C/C++ client libraries. By Sasha Pachev.
@end itemize
@cindex tools, authentication
diff --git a/extra/resolve_stack_dump.c b/extra/resolve_stack_dump.c
index 5bfdd22f8fc..a91c9588fbb 100644
--- a/extra/resolve_stack_dump.c
+++ b/extra/resolve_stack_dump.c
@@ -31,7 +31,7 @@
#define INIT_SYM_TABLE 4096
#define INC_SYM_TABLE 4096
#define MAX_SYM_SIZE 128
-#define DUMP_VERSION "1.0"
+#define DUMP_VERSION "1.1"
#define HEX_INVALID (uchar)255
typedef ulong my_long_addr_t ; /* at some point, we need to fix configure
@@ -198,6 +198,8 @@ static int init_sym_entry(SYM_ENTRY* se, char* buf)
break;
}
*p = 0;
+ if(!strcmp(se->symbol, "gcc2_compiled."))
+ return -1;
return 0;
}