Convert __thread to pthreads for Thread Local Storage
[openssl.git] / crypto / async / arch / async_null.c
index 8de50ed5313088725b1a6af657323674bcab043d..dba159f309624615cfae4a93e75e8d6ee19bc9da 100644 (file)
@@ -61,6 +61,11 @@ int async_pipe(OSSL_ASYNC_FD *pipefds)
     return -1;
 }
 
+int async_close_fd(OSSL_ASYNC_FD fd)
+{
+    return 0;
+}
+
 int async_write1(OSSL_ASYNC_FD fd, const void *buf)
 {
     return -1;
@@ -71,5 +76,10 @@ int async_read1(OSSL_ASYNC_FD fd, void *buf)
     return -1;
 }
 
+int async_thread_local_init(void)
+{
+    return 0;
+}
+
 #endif