2015-10-06 05:58:01 +08:00
|
|
|
/*
|
2022-05-03 18:52:38 +08:00
|
|
|
* Copyright 2015-2022 The OpenSSL Project Authors. All Rights Reserved.
|
2015-10-06 05:58:01 +08:00
|
|
|
*
|
2018-12-06 20:18:31 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:24:46 +08:00
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2015-10-06 05:58:01 +08:00
|
|
|
*/
|
|
|
|
|
2015-11-22 09:14:43 +08:00
|
|
|
/* This must be the first #include file */
|
2019-09-28 06:45:40 +08:00
|
|
|
#include "../async_local.h"
|
2015-10-06 05:58:01 +08:00
|
|
|
|
|
|
|
#ifdef ASYNC_NULL
|
2016-03-08 00:55:39 +08:00
|
|
|
int ASYNC_is_capable(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-02-25 02:13:25 +08:00
|
|
|
int ASYNC_set_mem_functions(ASYNC_stack_alloc_fn alloc_fn,
|
|
|
|
ASYNC_stack_free_fn free_fn)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ASYNC_get_mem_functions(ASYNC_stack_alloc_fn *alloc_fn,
|
|
|
|
ASYNC_stack_free_fn *free_fn)
|
|
|
|
{
|
|
|
|
if (alloc_fn != NULL)
|
|
|
|
*alloc_fn = NULL;
|
|
|
|
if (free_fn != NULL)
|
|
|
|
*free_fn = NULL;
|
|
|
|
}
|
|
|
|
|
2015-11-20 05:44:13 +08:00
|
|
|
void async_local_cleanup(void)
|
|
|
|
{
|
|
|
|
}
|
2015-10-06 05:58:01 +08:00
|
|
|
#endif
|
|
|
|
|