diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-09-23 19:19:14 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-09-23 19:19:14 +0000 |
commit | 6a02f842729a97d51b61a276f02c95d1ea04557f (patch) | |
tree | b3de982ae142c89babc81a4d435d849a4bf13e44 /include | |
parent | 1726096dd0255aeb6e63029d07691735581815fb (diff) |
Remove InspIRCd::DoOneIteration, throwback to software threading (lulz)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8065 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/inspircd.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index d5d0c9ae4..567b172c2 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -980,12 +980,6 @@ class CoreExport InspIRCd : public classbase */ InspIRCd(int argc, char** argv); - /** Do one iteration of the mainloop - * @param process_module_sockets True if module sockets are to be processed - * this time around the event loop. The is the default. - */ - void DoOneIteration(bool process_module_sockets = true); - /** Output a log message to the ircd.log file * The text will only be output if the current loglevel * is less than or equal to the level you provide @@ -1057,8 +1051,7 @@ class CoreExport InspIRCd : public classbase /** Begin execution of the server. * NOTE: this function NEVER returns. Internally, - * after performing some initialisation routines, - * it will repeatedly call DoOneIteration in a loop. + * it will repeatedly loop. * @return The return value for this function is undefined. */ int Run(); |