]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/pgo.h
xnu-7195.81.3.tar.gz
[apple/xnu.git] / bsd / sys / pgo.h
index fcd669b51aa54d463f5522def7b77627bd1a3296..35ddf7e7034752344f81a56b6afdfd759e813aaf 100644 (file)
  * All members are in network byte order.
  */
 struct pgo_metadata_footer {
-    /**
-     * number of pairs.
-     *
-     * This should be htonl(n), where n is the number of key-value pairs in the
-     * metadata buffer
-     */
-    uint32_t number_of_pairs;
+       /**
+        * number of pairs.
+        *
+        * This should be htonl(n), where n is the number of key-value pairs in the
+        * metadata buffer
+        */
+       uint32_t number_of_pairs;
 
-    /**
-     * pointer to the metadata buffer
-     *
-     * This should be htonl(offset), where offset is the backwards offset from
-     * the end of the file to the metadata buffer.
-     */
-    uint32_t  offset_to_pairs;
+       /**
+        * pointer to the metadata buffer
+        *
+        * This should be htonl(offset), where offset is the backwards offset from
+        * the end of the file to the metadata buffer.
+        */
+       uint32_t  offset_to_pairs;
 
-    /**
-     * magic number
-     *
-     * This should be  htonl(0x6d657461);
-     */
-    uint32_t magic;
+       /**
+        * magic number
+        *
+        * This should be  htonl(0x6d657461);
+        */
+       uint32_t magic;
 };
 
 #ifndef KERNEL