1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00

Merge bk-internal.mysql.com:/home/bk/mysql-5.0

into  mishka.local:/home/my/mysql-5.0
This commit is contained in:
unknown
2005-08-22 19:58:11 +03:00
2 changed files with 7 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ public:
void kill_instance(int signo);
int is_crashed();
void set_crash_flag_n_wake_all();
Instance_map *Instance::get_map();
Instance_map *get_map();
public:
enum { DEFAULT_SHUTDOWN_DELAY= 35 };

View File

@@ -426,9 +426,14 @@ struct ilink
template <class T> class I_List_iterator;
/*
WARNING: copy constructor of this class does not create a usable
copy, as its members may point at each other.
*/
class base_ilist
{
public:
public:
struct ilink *first,last;
inline void empty() { first= &last; last.prev= &first; }
base_ilist() { empty(); }