Commit a4892eaf authored by unknown's avatar unknown

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

into  mishka.local:/home/my/mysql-5.0

parents 2e44fbb0 0b4ec2fb
...@@ -42,7 +42,7 @@ public: ...@@ -42,7 +42,7 @@ public:
void kill_instance(int signo); void kill_instance(int signo);
int is_crashed(); int is_crashed();
void set_crash_flag_n_wake_all(); void set_crash_flag_n_wake_all();
Instance_map *Instance::get_map(); Instance_map *get_map();
public: public:
enum { DEFAULT_SHUTDOWN_DELAY= 35 }; enum { DEFAULT_SHUTDOWN_DELAY= 35 };
......
...@@ -426,9 +426,14 @@ struct ilink ...@@ -426,9 +426,14 @@ struct ilink
template <class T> class I_List_iterator; 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 class base_ilist
{ {
public: public:
struct ilink *first,last; struct ilink *first,last;
inline void empty() { first= &last; last.prev= &first; } inline void empty() { first= &last; last.prev= &first; }
base_ilist() { empty(); } base_ilist() { empty(); }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment