git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Block all signals in threads other than main
[stg.git]
/
projects
/
rscriptd
/
main.cpp
diff --git
a/projects/rscriptd/main.cpp
b/projects/rscriptd/main.cpp
index 7e7f7f355e257f2e10d61a3cec9d65d53eaf241a..2739758ce400cb9f49cd62d1287736888fdf8614 100644
(file)
--- a/
projects/rscriptd/main.cpp
+++ b/
projects/rscriptd/main.cpp
@@
-430,7
+430,8
@@
WriteServLog("+++++++++++++++++++++++++++++++++++++++++++++");
while (nonstop.GetStatus())
{
- usleep(100000);
+ struct timespec ts = {0, 100000000};
+ nanosleep(&ts, NULL);
}
listener->Stop();