summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-19 06:22:32 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-20 09:49:37 +0200
commit7806d9c020e5da3ad1b5ce7af4c7c68def8de6c9 (patch)
tree1e484f06a4871d712094967429dde00965943592 /c/src/lib/libbsp/shared
parentbsps: Move getentropy-cpucounter.c to bsps (diff)
downloadrtems-7806d9c020e5da3ad1b5ce7af4c7c68def8de6c9.tar.bz2
bsps: Move shared CPU counter support to bsps
This patch is a part of the BSP source reorganization. Update #3285.
Diffstat (limited to 'c/src/lib/libbsp/shared')
-rw-r--r--c/src/lib/libbsp/shared/cpucounterdiff.c23
-rw-r--r--c/src/lib/libbsp/shared/cpucounterread.c27
2 files changed, 0 insertions, 50 deletions
diff --git a/c/src/lib/libbsp/shared/cpucounterdiff.c b/c/src/lib/libbsp/shared/cpucounterdiff.c
deleted file mode 100644
index d77945d5b8..0000000000
--- a/c/src/lib/libbsp/shared/cpucounterdiff.c
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Copyright (c) 2014 embedded brains GmbH. All rights reserved.
- *
- * embedded brains GmbH
- * Dornierstr. 4
- * 82178 Puchheim
- * Germany
- * <rtems@embedded-brains.de>
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-#include <rtems/score/cpu.h>
-
-CPU_Counter_ticks _CPU_Counter_difference(
- CPU_Counter_ticks second,
- CPU_Counter_ticks first
-)
-{
- return second - first;
-}
diff --git a/c/src/lib/libbsp/shared/cpucounterread.c b/c/src/lib/libbsp/shared/cpucounterread.c
deleted file mode 100644
index b5dc02a40f..0000000000
--- a/c/src/lib/libbsp/shared/cpucounterread.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Copyright (c) 2014 embedded brains GmbH. All rights reserved.
- *
- * embedded brains GmbH
- * Dornierstr. 4
- * 82178 Puchheim
- * Germany
- * <rtems@embedded-brains.de>
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-#include <rtems/score/cpu.h>
-
-CPU_Counter_ticks _CPU_Counter_read( void )
-{
- static CPU_Counter_ticks counter;
-
- CPU_Counter_ticks snapshot;
-
- snapshot = counter;
- counter = snapshot + 1;
-
- return snapshot;
-}