diff options
author | hemagx <hemagx2@gmail.com> | 2016-03-01 07:48:59 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-07-12 20:58:41 +0200 |
commit | 257b9e11ab6cf503d0b9582eb855ea0b50ec8877 (patch) | |
tree | 9110aa9f8647ef7a13702d05fc06f11ea0ca8830 /src/common/core.c | |
parent | d0355d1df812f75e22f2d0538a1850d4e1274078 (diff) | |
download | hercules-257b9e11ab6cf503d0b9582eb855ea0b50ec8877.tar.gz hercules-257b9e11ab6cf503d0b9582eb855ea0b50ec8877.tar.bz2 hercules-257b9e11ab6cf503d0b9582eb855ea0b50ec8877.tar.xz hercules-257b9e11ab6cf503d0b9582eb855ea0b50ec8877.zip |
Interface thread.c
Diffstat (limited to 'src/common/core.c')
-rw-r--r-- | src/common/core.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/core.c b/src/common/core.c index f5860e992..508a728f0 100644 --- a/src/common/core.c +++ b/src/common/core.c @@ -266,6 +266,7 @@ void core_defaults(void) { socket_defaults(); rnd_defaults(); md5_defaults(); + thread_defaults(); #endif } /** @@ -505,7 +506,7 @@ int main (int argc, char **argv) { set_server_type(); Sql_Init(); - rathread_init(); + thread->init(); DB->init(); signals_init(); @@ -541,7 +542,7 @@ int main (int argc, char **argv) { timer->final(); sockt->final(); DB->final(); - rathread_final(); + thread->final(); ers_final(); rnd->final(); #endif |