Put finishing touches on turfwar http server

- Shutdown process now has optimal cancellation latency
- Fairer techniques for shedding connections under load
- We no longer need to call poll() which is now removed
This commit is contained in:
Justine Tunney 2022-10-03 21:50:00 -07:00
parent 01bd7d1008
commit 3ee3736a01
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
3 changed files with 117 additions and 61 deletions

View file

@ -2887,7 +2887,7 @@ zvoid *memset(buf, init, len)
/* Function memcmp() */
/*********************/
int memcmp(b1, b2, len)
int memcmp_(b1, b2, len)
register ZCONST zvoid *b1;
register ZCONST zvoid *b2;
register unsigned int len;
@ -2908,7 +2908,7 @@ int memcmp(b1, b2, len)
/* Function memcpy() */
/*********************/
zvoid *memcpy(dst, src, len)
zvoid *memcpy_(dst, src, len)
register zvoid *dst;
register ZCONST zvoid *src;
register unsigned int len;