Fix ASYNC null implementation

The ASYNC null implementation has not kept pace with the rest of the async
development and so was failing to compile.

Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
Matt Caswell
2015-10-05 22:58:01 +01:00
parent 5705e05037
commit 7240557b7d
5 changed files with 130 additions and 2 deletions

View File

@@ -73,4 +73,8 @@ typedef struct async_fibre_st {
# define ASYNC_FIBRE_makecontext(c)
# define ASYNC_FIBRE_free(f)
# define ASYNC_FIBRE_init_dispatcher(f)
# define async_pipe(f) 0
# define async_write1(f,b) ((*b == 0) ? (f = 0) : (f = 1))
# define async_read1(f,b) (*b = 0)
#endif