diff options
author | monty@work.mysql.com <> | 2001-04-11 13:04:03 +0200 |
---|---|---|
committer | monty@work.mysql.com <> | 2001-04-11 13:04:03 +0200 |
commit | 8f62579c38e860ddc1d62c463d895c4c951fe979 (patch) | |
tree | 9ad58a68370fc8feb8195b7b9c6423d58372093a /pstack/pstack.h | |
parent | 4709a1721a656f175e7b27aef2c01fa3910000f8 (diff) | |
download | mariadb-git-8f62579c38e860ddc1d62c463d895c4c951fe979.tar.gz |
Added all changes from old 4.0 version:
PSTACK, libmysqld and MySQL filesystem
UPDATE ... ORDER BY
DELETE ... ORDER BY
New faster fulltext handling
Faster compressed keys
Diffstat (limited to 'pstack/pstack.h')
-rw-r--r-- | pstack/pstack.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pstack/pstack.h b/pstack/pstack.h new file mode 100644 index 00000000000..4c4fad7e754 --- /dev/null +++ b/pstack/pstack.h @@ -0,0 +1,22 @@ +/* $Header$ */ + +#ifndef pstack_pstack_h_ +#define pstack_pstack_h_ + +#include "pstacktrace.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * Install the stack-trace-on-SEGV handler.... + */ +extern int +pstack_install_segv_action( const char* path_format); +#ifdef __cplusplus +} +#endif + +#endif /* pstack_pstack_h_ */ + |