pw_sync_threadx: add bss comment for ISL's state enum

Change-Id: I34f4e7eb3cf26afed83d52141977873a120b9e07
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/55060
Pigweed-Auto-Submit: Ewout van Bekkum <ewout@google.com>
Reviewed-by: Keir Mierle <keir@google.com>
Commit-Queue: Auto-Submit <auto-submit@pigweed.google.com.iam.gserviceaccount.com>
diff --git a/pw_sync_threadx/public/pw_sync_threadx/interrupt_spin_lock_native.h b/pw_sync_threadx/public/pw_sync_threadx/interrupt_spin_lock_native.h
index 6b6d3f7..01e07ab 100644
--- a/pw_sync_threadx/public/pw_sync_threadx/interrupt_spin_lock_native.h
+++ b/pw_sync_threadx/public/pw_sync_threadx/interrupt_spin_lock_native.h
@@ -19,7 +19,7 @@
 
 struct NativeInterruptSpinLock {
   enum class State {
-    kUnlocked = 0,
+    kUnlocked = 0,  // This must be 0 to ensure it is bss eligible.
     kLockedFromInterrupt = 1,
     kLockedFromThread = 2,
   };