X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=boards%2Farduino%2Fbenchmark%2Fcontext_switch%2Fmain.c;fp=boards%2Farduino%2Fbenchmark%2Fcontext_switch%2Fmain.c;h=0000000000000000000000000000000000000000;hb=a9694caa1505e6387d8976437d38b330499e18dc;hp=ef29fb02cd9ff69125d0c93329b9f21f17ce7dcc;hpb=f87390bf71f44a3ed9dc65c66128c5c6979655a9;p=bertos.git diff --git a/boards/arduino/benchmark/context_switch/main.c b/boards/arduino/benchmark/context_switch/main.c deleted file mode 100644 index ef29fb02..00000000 --- a/boards/arduino/benchmark/context_switch/main.c +++ /dev/null @@ -1,56 +0,0 @@ -/** - * \file - * - * - * \author Daniele Basile - * - * \brief Kernel context switch benchmark. - * - * This benchmark measures the overhead (in µs) required to deliver a - * signal and switch from a low-priority process to a high-priority process. - * - * The measure is made by the high-precision timer if supported by the - * architecture. Alternatively, the time can also be measured using an external - * oscilloscope connected to the board's status LED. - */ - -#include - -int main(void) -{ - context_switch(); - while (1) - { - } - - return 0; -} -