summaryrefslogtreecommitdiffstats
path: root/kernel/tests/include/tst_timer_test.h
diff options
context:
space:
mode:
authorManuel Bentele2020-10-23 15:18:01 +0200
committerManuel Bentele2020-10-23 15:18:01 +0200
commitdbb41ce2b7f309d394054a6bd1e33afd578798a5 (patch)
tree6a31092063d9f2fb5ac5720ec6759040e793c3d5 /kernel/tests/include/tst_timer_test.h
parentSet Linux kernel version to unknown if it is not detectable (diff)
downloadxloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.tar.gz
xloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.tar.xz
xloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.zip
Move the source code of all xloop components to the common 'src' directory
Diffstat (limited to 'kernel/tests/include/tst_timer_test.h')
-rw-r--r--kernel/tests/include/tst_timer_test.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/kernel/tests/include/tst_timer_test.h b/kernel/tests/include/tst_timer_test.h
deleted file mode 100644
index b825a4d..0000000
--- a/kernel/tests/include/tst_timer_test.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0-or-later
-/*
- * Copyright (c) 2017 Cyril Hrubis <chrubis@suse.cz>
- */
-
- /*
-
- Timer measuring library.
-
- The test is supposed to define sampling function and set it in the tst_test
- structure the rest of the work is then done by the library.
-
- int sample(int clk_id, long long usec)
- {
- // Any setup done here
-
- tst_timer_start(clk_id);
- // Call that is being measured sleeps for usec
- tst_timer_stop();
- tst_timer_sample();
-
- // Any cleanup done here
-
- // Non-zero return exits the test
- }
-
- struct tst_test test = {
- .scall = "syscall_name()",
- .sample = sample,
- };
-
- */
-
-#ifndef TST_TIMER_TEST__
-#define TST_TIMER_TEST__
-
-#include "tst_test.h"
-#include "tst_timer.h"
-
-void tst_timer_sample(void);
-
-# ifdef TST_NO_DEFAULT_MAIN
-struct tst_test *tst_timer_test_setup(struct tst_test *test);
-# endif /* TST_NO_DEFAULT_MAIN */
-#endif /* TST_TIMER_TEST__ */