diff options
author | monty@hundin.mysql.fi <> | 2002-06-27 11:27:04 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-06-27 11:27:04 +0300 |
commit | 8a2daeac77951b6f97bfbfbd3db3995cae37b4c3 (patch) | |
tree | 857f8b9d553911f4937bee644ea5d2c3606e8e58 /include/thr_alarm.h | |
parent | 12f9623b62e5418028b88d2c3112e5d8b40ed747 (diff) | |
download | mariadb-git-8a2daeac77951b6f97bfbfbd3db3995cae37b4c3.tar.gz |
Removed mysql_ssl_clear()
Added statistics information for alarms (for bug tracking)
Don't store "incomplete" in the xxx.cfg file if we are not using --restart. (Crash-me)
Enlarged STACK_BUF_ALLOC becasue of failed crash-me test
Aded new script mysql_tableinfo to make a system directory.
Diffstat (limited to 'include/thr_alarm.h')
-rw-r--r-- | include/thr_alarm.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/thr_alarm.h b/include/thr_alarm.h index 5caf552718c..30825d49158 100644 --- a/include/thr_alarm.h +++ b/include/thr_alarm.h @@ -38,6 +38,15 @@ extern "C" { #define THR_SERVER_ALARM SIGALRM #endif +typedef struct st_alarm_info +{ + ulong next_alarm_time; + uint active_alarms; + uint max_used_alarms; +} ALARM_INFO; + +void thr_alarm_info(ALARM_INFO *info); + #if defined(DONT_USE_THR_ALARM) || !defined(THREAD) #define USE_ALARM_THREAD |