1e71b7053SJung-uk Kim /*
2e71b7053SJung-uk Kim  * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
3e71b7053SJung-uk Kim  *
4*b077aed3SPierre Pronchery  * Licensed under the Apache License 2.0 (the "License").  You may not use
5e71b7053SJung-uk Kim  * this file except in compliance with the License.  You can obtain a copy
6e71b7053SJung-uk Kim  * in the file LICENSE in the source distribution or at
7e71b7053SJung-uk Kim  * https://www.openssl.org/source/license.html
8e71b7053SJung-uk Kim  */
9e71b7053SJung-uk Kim 
10e71b7053SJung-uk Kim #include <openssl/async.h>
11e71b7053SJung-uk Kim 
12e71b7053SJung-uk Kim /*
13e71b7053SJung-uk Kim  * If we haven't managed to detect any other async architecture then we default
14e71b7053SJung-uk Kim  * to NULL.
15e71b7053SJung-uk Kim  */
16e71b7053SJung-uk Kim #ifndef ASYNC_ARCH
17e71b7053SJung-uk Kim # define ASYNC_NULL
18e71b7053SJung-uk Kim # define ASYNC_ARCH
19e71b7053SJung-uk Kim 
20e71b7053SJung-uk Kim typedef struct async_fibre_st {
21e71b7053SJung-uk Kim     int dummy;
22e71b7053SJung-uk Kim } async_fibre;
23e71b7053SJung-uk Kim 
24e71b7053SJung-uk Kim 
25e71b7053SJung-uk Kim # define async_fibre_swapcontext(o,n,r)         0
26e71b7053SJung-uk Kim # define async_fibre_makecontext(c)             0
27e71b7053SJung-uk Kim # define async_fibre_free(f)
28e71b7053SJung-uk Kim # define async_fibre_init_dispatcher(f)
29e71b7053SJung-uk Kim 
30e71b7053SJung-uk Kim #endif
31