[修改] 增加freeRTOS
1. 版本FreeRTOSv202212.01,命名为kernel;
This commit is contained in:
15
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/examples/benchmark/include.am
vendored
Normal file
15
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/examples/benchmark/include.am
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
# vim:ft=automake
|
||||
# included from Top Level Makefile.am
|
||||
# All paths should be given relative to the root
|
||||
|
||||
|
||||
if BUILD_THREADED_EXAMPLES
|
||||
noinst_PROGRAMS += examples/benchmark/tls_bench
|
||||
noinst_HEADERS += examples/benchmark/tls_bench.h
|
||||
examples_benchmark_tls_bench_SOURCES = examples/benchmark/tls_bench.c
|
||||
examples_benchmark_tls_bench_LDADD = src/libwolfssl.la $(LIB_STATIC_ADD)
|
||||
examples_benchmark_tls_bench_DEPENDENCIES = src/libwolfssl.la
|
||||
endif
|
||||
|
||||
dist_example_DATA+= examples/benchmark/tls_bench.c
|
||||
DISTCLEANFILES+= examples/benchmark/.libs/tls_bench
|
||||
1952
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/examples/benchmark/tls_bench.c
vendored
Normal file
1952
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/examples/benchmark/tls_bench.c
vendored
Normal file
File diff suppressed because it is too large
Load Diff
30
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/examples/benchmark/tls_bench.h
vendored
Normal file
30
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/examples/benchmark/tls_bench.h
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
/* tls_bench.h
|
||||
*
|
||||
* Copyright (C) 2006-2020 wolfSSL Inc.
|
||||
*
|
||||
* This file is part of wolfSSL.
|
||||
*
|
||||
* wolfSSL is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* wolfSSL is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
||||
*/
|
||||
|
||||
|
||||
#ifndef WOLFSSL_TLS_BENCH_H
|
||||
#define WOLFSSL_TLS_BENCH_H
|
||||
|
||||
|
||||
int bench_tls(void* args);
|
||||
|
||||
|
||||
#endif /* WOLFSSL_TLS_BENCH_H */
|
||||
Reference in New Issue
Block a user