@@ -46,7 +46,7 @@ int main(int argc, char* argv[]) {
46
46
util::thread_pool pool;
47
47
async_serverserver_instance (ASYNC_SERVER_TEST_CONFIG);
48
48
49
- boost::threadrunning_thread (boost ::bind (&async_server::run,
49
+ boost::threadrunning_thread (std ::bind (&async_server::run,
50
50
&server_instance));
51
51
boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
52
52
@@ -60,11 +60,11 @@ int main(int argc, char* argv[]) {
60
60
util::thread_pool pool;
61
61
async_serverserver_instance (ASYNC_SERVER_TEST_CONFIG);
62
62
63
- boost::threadrunning_thread (boost ::bind (&async_server::run,
63
+ boost::threadrunning_thread (std ::bind (&async_server::run,
64
64
&server_instance));
65
65
boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
66
66
67
- boost::threadstopping_thread (boost ::bind (&async_server::stop,
67
+ boost::threadstopping_thread (std ::bind (&async_server::stop,
68
68
&server_instance));
69
69
boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
70
70
@@ -78,19 +78,19 @@ int main(int argc, char* argv[]) {
78
78
util::thread_pool pool;
79
79
async_serverserver_instance (ASYNC_SERVER_TEST_CONFIG);
80
80
81
- boost::threadrunning_thread (boost ::bind (&async_server::run,
81
+ boost::threadrunning_thread (std ::bind (&async_server::run,
82
82
&server_instance));
83
83
boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
84
84
85
- boost::threadstopping_thread (boost ::bind (&async_server::stop,
85
+ boost::threadstopping_thread (std ::bind (&async_server::stop,
86
86
&server_instance));
87
87
boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
88
88
89
- boost::threadsecond_running_thread (boost ::bind (&async_server::run,
89
+ boost::threadsecond_running_thread (std ::bind (&async_server::run,
90
90
&server_instance));
91
91
boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
92
92
93
- boost::threadsecond_stopping_thread (boost ::bind (&async_server::stop,
93
+ boost::threadsecond_stopping_thread (std ::bind (&async_server::stop,
94
94
&server_instance));
95
95
boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
96
96
@@ -106,15 +106,15 @@ int main(int argc, char* argv[]) {
106
106
util::thread_pool pool;
107
107
async_serverserver_instance (ASYNC_SERVER_TEST_CONFIG);
108
108
109
- boost::threadrunning_thread (boost ::bind (&async_server::run,
109
+ boost::threadrunning_thread (std ::bind (&async_server::run,
110
110
&server_instance));
111
111
boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
112
112
113
- boost::threadsecond_running_thread (boost ::bind (&async_server::run,
113
+ boost::threadsecond_running_thread (std ::bind (&async_server::run,
114
114
&server_instance));
115
115
boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
116
116
117
- boost::threadstopping_thread (boost ::bind (&async_server::stop,
117
+ boost::threadstopping_thread (std ::bind (&async_server::stop,
118
118
&server_instance));
119
119
boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
120
120
@@ -129,15 +129,15 @@ int main(int argc, char* argv[]) {
129
129
util::thread_pool pool;
130
130
async_serverserver_instance (ASYNC_SERVER_TEST_CONFIG);
131
131
132
- boost::threadrunning_thread (boost ::bind (&async_server::run,
132
+ boost::threadrunning_thread (std ::bind (&async_server::run,
133
133
&server_instance));
134
134
boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
135
135
136
- boost::threadstopping_thread (boost ::bind (&async_server::stop,
136
+ boost::threadstopping_thread (std ::bind (&async_server::stop,
137
137
&server_instance));
138
138
boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
139
139
140
- boost::threadsecond_stopping_thread (boost ::bind (&async_server::stop,
140
+ boost::threadsecond_stopping_thread (std ::bind (&async_server::stop,
141
141
&server_instance));
142
142
boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
143
143