summaryrefslogtreecommitdiff
path: root/include/inspircd.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-09-23 19:19:14 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-09-23 19:19:14 +0000
commit6a02f842729a97d51b61a276f02c95d1ea04557f (patch)
treeb3de982ae142c89babc81a4d435d849a4bf13e44 /include/inspircd.h
parent1726096dd0255aeb6e63029d07691735581815fb (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/inspircd.h')
-rw-r--r--include/inspircd.h9
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();