summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/score
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2022-06-23 08:55:38 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2022-06-23 10:29:31 +0200
commita76988c881d84c394478a9e02689aed5e19f8763 (patch)
treeba5809abb46d4da46b96abb4fe4678aded9c1a97 /cpukit/include/rtems/score
parentspcpuset01: Account for <sys/cpuset.h> API changes (diff)
downloadrtems-a76988c881d84c394478a9e02689aed5e19f8763.tar.bz2
score: Remove unused _Processor_mask_Nand()
Update #4667.
Diffstat (limited to 'cpukit/include/rtems/score')
-rw-r--r--cpukit/include/rtems/score/processormask.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/cpukit/include/rtems/score/processormask.h b/cpukit/include/rtems/score/processormask.h
index 000bb63c8b..5165f9b4dc 100644
--- a/cpukit/include/rtems/score/processormask.h
+++ b/cpukit/include/rtems/score/processormask.h
@@ -228,22 +228,6 @@ RTEMS_INLINE_ROUTINE void _Processor_mask_And(
}
/**
- * @brief Performs a bitwise a = b & ~c.
- *
- * @param[out] a The processor mask that is set by this operation.
- * @param b The first parameter of the operation.
- * @param c The second parameter of the operation.
- */
-RTEMS_INLINE_ROUTINE void _Processor_mask_Nand(
- Processor_mask *a,
- const Processor_mask *b,
- const Processor_mask *c
-)
-{
- BIT_NAND2( CPU_MAXIMUM_PROCESSORS, a, b, c );
-}
-
-/**
* @brief Performs a bitwise a = b | c.
*
* @param[out] a The processor mask that is set by this operation.