Improve the comment for atomic_flag.
Change-Id: I5ef55a2d99a5c48972dad9d426ff862ca35f4c6d
diff --git a/libc/include/bits/stdatomic.h b/libc/include/bits/stdatomic.h
index 8717e15..d4bbfe6 100644
--- a/libc/include/bits/stdatomic.h
+++ b/libc/include/bits/stdatomic.h
@@ -216,8 +216,10 @@
/*
* 7.17.8 Atomic flag type and operations.
*
- * XXX: Assume atomic_bool can be used as an atomic_flag. Is there some
- * kind of compiler built-in type we could use?
+ * atomic_bool can be used to provide a lock-free atomic flag type on every
+ * Android architecture, so this shouldn't be needed in new Android code,
+ * but is in ISO C, and available for portability to PA-RISC and
+ * microcontrollers.
*/
typedef struct {