mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
configure.in:
Added --with-system-type=<systype> and --with-machine-type=<machtype> options, to be able to override the one detected, for --version strings field.cc, field.h, listener.cc: C++ compatibility change for IBM VisualAge 6 and i5/OS
This commit is contained in:

parent
f369105aa4
commit
2418b85046
@ -67,7 +67,7 @@ public:
|
||||
~Listener_thread();
|
||||
void run();
|
||||
private:
|
||||
static const int LISTEN_BACK_LOG_SIZE= 5; /* standard backlog size */
|
||||
static const int LISTEN_BACK_LOG_SIZE;
|
||||
ulong total_connection_count;
|
||||
Thread_info thread_info;
|
||||
|
||||
@ -80,6 +80,8 @@ private:
|
||||
int create_unix_socket(struct sockaddr_un &unix_socket_address);
|
||||
};
|
||||
|
||||
const int Listener_thread::LISTEN_BACK_LOG_SIZE = 5; /* standard backlog size */
|
||||
|
||||
|
||||
Listener_thread::Listener_thread(const Listener_thread_args &args) :
|
||||
Listener_thread_args(args.thread_registry, args.options, args.user_map,
|
||||
|
Reference in New Issue
Block a user