1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

ha_partition.cc, listener.h, listener.cc, ha_partition.h:

Initiate static const outside class definition
This commit is contained in:
kent/mysqldev@mysql.com/production.mysql.com
2007-09-07 13:30:42 +02:00
parent 76c99a074c
commit cf2b6a9747
4 changed files with 5 additions and 2 deletions

View File

@ -56,6 +56,7 @@ static void set_no_inherit(int socket)
#endif
}
const int Listener::LISTEN_BACK_LOG_SIZE= 5; /* standard backlog size */
Listener::Listener(Thread_registry *thread_registry_arg,
User_map *user_map_arg)

View File

@ -39,7 +39,7 @@ protected:
virtual void run();
private:
static const int LISTEN_BACK_LOG_SIZE= 5; /* standard backlog size */
static const int LISTEN_BACK_LOG_SIZE;
private:
Thread_info thread_info;