Browse Source

nginx: fixed nanosleep() replacement of usleep() in 'legacy_sus.patch'

user/amery/wip/python
Christian Wiese 14 years ago
parent
commit
5452f1b574
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      network/nginx/legacy_sus.patch

+ 1
- 1
network/nginx/legacy_sus.patch

@ -24,7 +24,7 @@ deprecation.
#define ngx_gettimeofday(tp) (void) gettimeofday(tp, NULL);
-#define ngx_msleep(ms) (void) usleep(ms * 1000)
+#define ngx_msleep(ms) (void) nanosleep(&((struct timespec){0,(ms) * 1000}), NULL)
+#define ngx_msleep(ms) (void) nanosleep(&((struct timespec){0,(ms) * 1000000ul}), NULL)
#define ngx_sleep(s) (void) sleep(s)

Loading…
Cancel
Save