Convert ASYNC code to use new Thread API
[openssl.git] / crypto / async / arch / async_null.c
index d3f686f492f38bdf67c98921f4b072386ac9960e..7b93090a9a87c13bb295a1a776108963a44effa9 100644 (file)
 
 #ifdef ASYNC_NULL
 
-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;
-}
-
-int async_read1(OSSL_ASYNC_FD fd, void *buf)
-{
-    return -1;
-}
-
-int async_global_init(void)
-{
-    return 0;
-}
-
-int async_local_init(void)
-{
-    return 0;
-}
-
 void async_local_cleanup(void)
 {
 }
 
-void async_global_cleanup(void)
-{
-}
-
 #endif