diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-14 19:51:56 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-14 19:51:56 +0000 |
commit | 51b1560725e8b95562a0d09b87755add4ba59aef (patch) | |
tree | 010192846d1f155a460f37a0bb9a1c3a10c1a3d8 /src/userprocess.cpp | |
parent | 4652f73b9e7a0f41ad4c91353e0ac39ef838f6cb (diff) |
Remove FlushWriteBuffer() from DoBackgroundUserStuff(). Its no longer required here, it used to try and flush the buffer before we actually monitored write events, long ago, without seeing if it could write first, and wasted cpu. It should be removed now and doesnt seem to affect anything.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5989 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/userprocess.cpp')
-rw-r--r-- | src/userprocess.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/userprocess.cpp b/src/userprocess.cpp index 9aa6d4a31..815663ad8 100644 --- a/src/userprocess.cpp +++ b/src/userprocess.cpp @@ -331,7 +331,7 @@ void InspIRCd::DoBackgroundUserStuff(time_t TIME) * We can flush the write buffer as the last thing we do, because if they * match any of the above conditions its no use flushing their buffer anyway. */ - curr->FlushWriteBuf(); + //curr->FlushWriteBuf(); } } |