[Lldb-commits] [lldb] [lldb][FreeBSD] Add FreeBSD specific AT_HWCAP value (PR #84147)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 6 02:48:10 PST 2024


================
@@ -39,6 +43,11 @@ class AuxVector {
     AUXV_AT_EUID = 12,     ///< Effective UID.
     AUXV_AT_GID = 13,      ///< GID.
     AUXV_AT_EGID = 14,     ///< Effective GID.
+
+    // At this point Linux and FreeBSD diverge and many of the following values
+    // are Linux specific. If you use them make sure you are in Linux specific
+    // code or they have the same value on other platforms.
----------------
DavidSpickett wrote:

And if anyone knows the appropriate way to write this as a doxygen comment, that would be a great help.

https://github.com/llvm/llvm-project/pull/84147


More information about the lldb-commits mailing list