diff options
| author | 2011-01-29 16:29:33 -0500 | |
|---|---|---|
| committer | 2011-01-29 16:29:33 -0500 | |
| commit | 5dbabb823456744e7442edc2bfde1272bb2edcb1 (patch) | |
| tree | 9ca74394c3d59592b7cd70f64b1b37faaab3f02c /src/threadengines/threadengine_pthread.cpp | |
| parent | Remove protocol.h from inspircd.h (diff) | |
Remove cull_list.h from inspircd.h
Diffstat (limited to 'src/threadengines/threadengine_pthread.cpp')
| -rw-r--r-- | src/threadengines/threadengine_pthread.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/threadengines/threadengine_pthread.cpp b/src/threadengines/threadengine_pthread.cpp index 52ed4649a..d73ac5b30 100644 --- a/src/threadengines/threadengine_pthread.cpp +++ b/src/threadengines/threadengine_pthread.cpp @@ -12,6 +12,7 @@ */ #include "inspircd.h" +#include "cull_list.h" #include "threadengines/threadengine_pthread.h" #include <pthread.h> #include <signal.h> @@ -54,7 +55,7 @@ class ThreadSignalSocket : public EventHandler ServerInstance->Threads->job_lock.lock(); ServerInstance->Threads->result_ss = NULL; ServerInstance->Threads->job_lock.unlock(); - ServerInstance->GlobalCulls.AddItem(this); + ServerInstance->GlobalCulls->AddItem(this); } } }; @@ -102,7 +103,7 @@ class ThreadSignalSocket : public EventHandler ServerInstance->Threads->job_lock.lock(); ServerInstance->Threads->result_ss = NULL; ServerInstance->Threads->job_lock.unlock(); - ServerInstance->GlobalCulls.AddItem(this); + ServerInstance->GlobalCulls->AddItem(this); } } }; |
