summaryrefslogtreecommitdiff
path: root/cpukit/rtems/src/getcurrentprocessor.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/rtems/src/getcurrentprocessor.c')
-rw-r--r--cpukit/rtems/src/getcurrentprocessor.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/cpukit/rtems/src/getcurrentprocessor.c b/cpukit/rtems/src/getcurrentprocessor.c
deleted file mode 100644
index 10811ade66..0000000000
--- a/cpukit/rtems/src/getcurrentprocessor.c
+++ /dev/null
@@ -1,25 +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.
- */
-
-#if HAVE_CONFIG_H
- #include "config.h"
-#endif
-
-#include <rtems/rtems/tasks.h>
-#include <rtems/score/smp.h>
-
-uint32_t rtems_scheduler_get_processor(void)
-{
- return _SMP_Get_current_processor();
-}