diff options
author | Vincent Richard <[email protected]> | 2005-10-03 12:26:27 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-10-03 12:26:27 +0000 |
commit | e7ca1d246536288764a08ca61e3aa905fcaf009a (patch) | |
tree | 044ba080d125331611938c02bbb3b5f9c0b0614e /src/platforms/posix/posixHandler.cpp | |
parent | Made 'datetime' compatible with C's time_t. (diff) | |
download | vmime-e7ca1d246536288764a08ca61e3aa905fcaf009a.tar.gz vmime-e7ca1d246536288764a08ca61e3aa905fcaf009a.zip |
Reduced waiting time.
Diffstat (limited to 'src/platforms/posix/posixHandler.cpp')
-rw-r--r-- | src/platforms/posix/posixHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/platforms/posix/posixHandler.cpp b/src/platforms/posix/posixHandler.cpp index 91236a4f..ef7e55cc 100644 --- a/src/platforms/posix/posixHandler.cpp +++ b/src/platforms/posix/posixHandler.cpp @@ -217,7 +217,7 @@ void posixHandler::wait() const struct timespec ts; ts.tv_sec = 0; - ts.tv_nsec = 150000000; // 150 ms + ts.tv_nsec = 500000; // 500 microseconds nanosleep(&ts, NULL); } |