multi: use pipe instead of socketpair to *wakeup()

If pipe() is present. Less overhead.

Closes #12142
This commit is contained in:
Daniel Stenberg 2023-10-17 08:28:55 +02:00
parent e160d17a02
commit 03a70edc50
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -55,14 +55,14 @@
#include "curl_memory.h"
#include "memdebug.h"
#ifdef __APPLE__
#ifdef HAVE_PIPE
#define wakeup_write write
#define wakeup_read read
#define wakeup_close close
#define wakeup_create pipe
#else /* __APPLE__ */
#else /* HAVE_PIPE */
#define wakeup_write swrite
#define wakeup_read sread