[rtems commit] score: Remove unused _Processor_mask_Nand()

Sebastian Huber sebh at rtems.org
Fri Jun 24 05:32:20 UTC 2022


Module:    rtems
Branch:    master
Commit:    a76988c881d84c394478a9e02689aed5e19f8763
Changeset: http://git.rtems.org/rtems/commit/?id=a76988c881d84c394478a9e02689aed5e19f8763

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Thu Jun 23 08:55:38 2022 +0200

score: Remove unused _Processor_mask_Nand()

Update #4667.

---

 cpukit/include/rtems/score/processormask.h | 16 ----------------
 1 file changed, 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
@@ -227,22 +227,6 @@ RTEMS_INLINE_ROUTINE void _Processor_mask_And(
   BIT_AND2( 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.
- * @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.
  *



More information about the vc mailing list