summaryrefslogtreecommitdiffstats
path: root/crypto/async/arch/async_null.h
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-10-06 11:25:16 +0100
committerMatt Caswell <matt@openssl.org>2015-11-20 23:34:35 +0000
commit636ca4ff64d0c512b5f9e01ddc644e5f7661849e (patch)
treef8ba43256b35baad448da9eb614b1bce384cabb0 /crypto/async/arch/async_null.h
parent134b28f883b0a24c625600b328f4c5750c849a24 (diff)
Normalise ASYNC naming
Tidied up the naming of functions and structures to be consistent Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/async/arch/async_null.h')
-rw-r--r--crypto/async/arch/async_null.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/crypto/async/arch/async_null.h b/crypto/async/arch/async_null.h
index 796a13dd15..e9344f5874 100644
--- a/crypto/async/arch/async_null.h
+++ b/crypto/async/arch/async_null.h
@@ -63,15 +63,14 @@
typedef struct async_fibre_st {
int dummy;
-} ASYNC_FIBRE;
+} async_fibre;
-
-# define ASYNC_set_ctx(nctx) 0
-# define ASYNC_get_ctx() ((ASYNC_CTX *)NULL)
-# define ASYNC_FIBRE_swapcontext(o,n,r) 0
-# define ASYNC_FIBRE_makecontext(c)
-# define ASYNC_FIBRE_free(f)
-# define ASYNC_FIBRE_init_dispatcher(f)
+# define async_set_ctx(nctx) 0
+# define async_get_ctx() ((async_ctx *)NULL)
+# define async_fibre_swapcontext(o,n,r) 0
+# define async_fibre_makecontext(c)
+# define async_fibre_free(f)
+# define async_fibre_init_dispatcher(f)
#endif