diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-03-23 18:48:58 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-03-23 18:48:58 +0000 |
commit | 85a787b92b6de419fab2cd4fe118c0c7d47066d6 (patch) | |
tree | 9197e165576a404c0574fda525447ccf2ceff312 /win/inspircd_win32wrapper.cpp | |
parent | 59dbcc1245468218ec7e2372b2678351382a34f0 (diff) |
usleep() is no longer needed, and should not be needed in the future
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11252 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'win/inspircd_win32wrapper.cpp')
-rw-r--r-- | win/inspircd_win32wrapper.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/win/inspircd_win32wrapper.cpp b/win/inspircd_win32wrapper.cpp index ed60a4028..f42fa6479 100644 --- a/win/inspircd_win32wrapper.cpp +++ b/win/inspircd_win32wrapper.cpp @@ -684,12 +684,3 @@ int getcpu() return cpu; } - -void usleep(unsigned long usecs) -{ - if (usecs > 0UL) - { - unsigned long millis = ((usecs + 999UL) / 1000UL); - SleepEx(millis, false); - } -} |