diff options
author | monty@hundin.mysql.fi <> | 2002-04-02 17:54:57 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-04-02 17:54:57 +0300 |
commit | d80ebc17d6e89cac37bedb198b073dddade9c61b (patch) | |
tree | 0918e7f417ac64ab19af6ea441c12c97e897c1b9 /mysys/my_static.h | |
parent | 591bda67487d0215f4fd486dcca8ea703c626048 (diff) | |
download | mariadb-git-d80ebc17d6e89cac37bedb198b073dddade9c61b.tar.gz |
Cleanups
Don't use DBUG library for struct st_my_thread_var to make code less complicated.
Diffstat (limited to 'mysys/my_static.h')
-rw-r--r-- | mysys/my_static.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mysys/my_static.h b/mysys/my_static.h index ca384009063..88faf24ce82 100644 --- a/mysys/my_static.h +++ b/mysys/my_static.h @@ -57,10 +57,11 @@ extern const char *soundex_map; extern USED_MEM* my_once_root_block; extern uint my_once_extra; -/* these threads are exept from safemalloc leak scrutiny unless - PEDANTIC_SAFEMALLOC is defined +/* + These threads are exept from safemalloc leak scrutiny unless + PEDANTIC_SAFEMALLOC is defined */ -extern pthread_t signal_thread,kill_thread; +extern pthread_t signal_thread, kill_thread; #ifndef HAVE_TEMPNAM extern int _my_tempnam_used; |