<div dir="ltr"><div>Hey Zack,</div><div>Sebastian posted exactly what he thought those lines should be to match the surrounding coding style:</div><div>#if defined(CONFIGURE_TICKS_PER_TIMESLICE) && <br>   CONFIGURE_TICKS_PER_TIMESLICE <= 0</div><div><br></div><div>It should just be a single #if like that and with that order of conditionals. You'll of course need to remove the second #endif since you're going to 1 #if.<br></div><div><br></div><div>Kinsey<br></div><div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Mar 5, 2024 at 8:44 PM <<a href="mailto:zakthertemsdev@gmail.com">zakthertemsdev@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">From: Zack leung <<a href="mailto:z.liang111@gmail.com" target="_blank">z.liang111@gmail.com</a>><br>
<br>
diff --git a/cpukit/doxygen/appl-config.h b/cpukit/doxygen/appl-config.h<br>
index bd7cde628f..d480eb3971 100644<br>
--- a/cpukit/doxygen/appl-config.h<br>
+++ b/cpukit/doxygen/appl-config.h<br>
@@ -3312,7 +3312,7 @@<br>
  * @parblock<br>
  * The following constraints apply to this configuration option:<br>
  *<br>
- * * The value of the configuration option shall be greater than or equal to<br>
+ * * The value of the configuration option shall be greater than <br>
  *   zero.<br>
  *<br>
  * * The value of the configuration option shall be less than or equal to <a<br>
diff --git a/cpukit/include/rtems/confdefs/clock.h b/cpukit/include/rtems/confdefs/clock.h<br>
index 26519cc70b..bcca02bd43 100644<br>
--- a/cpukit/include/rtems/confdefs/clock.h<br>
+++ b/cpukit/include/rtems/confdefs/clock.h<br>
@@ -74,6 +74,12 @@<br>
   #error "CONFIGURE_MICROSECONDS_PER_TICK must be positive"<br>
 #endif<br>
<br>
+#if CONFIGURE_TICKS_PER_TIMESLICE <= 0 <br>
+  #if defined(CONFIGURE_TICKS_PER_TIMESLICE)<br>
+    #error "CONFIGURE_TICKS_PER_TIMESLICE shall be greater than zero"<br>
+  #endif <br>
+#endif<br>
+<br>
 #ifdef __cplusplus<br>
 extern "C" {<br>
 #endif<br>
-- <br>
2.43.0<br>
<br>
_______________________________________________<br>
devel mailing list<br>
<a href="mailto:devel@rtems.org" target="_blank">devel@rtems.org</a><br>
<a href="http://lists.rtems.org/mailman/listinfo/devel" rel="noreferrer" target="_blank">http://lists.rtems.org/mailman/listinfo/devel</a><br>
</blockquote></div>