summaryrefslogtreecommitdiffstats
path: root/src/include/buffer.h
diff options
context:
space:
mode:
authorMichael Brown2005-05-19 13:54:41 +0200
committerMichael Brown2005-05-19 13:54:41 +0200
commite911a74724195bf369608f7e409d57e0ce096a90 (patch)
treeda20d79716dfc7c6276caaee1391e34236424dcd /src/include/buffer.h
parentload_buffer is now handled via load_buffer.h (diff)
downloadipxe-e911a74724195bf369608f7e409d57e0ce096a90.tar.gz
ipxe-e911a74724195bf369608f7e409d57e0ce096a90.tar.xz
ipxe-e911a74724195bf369608f7e409d57e0ce096a90.zip
More documentation
Diffstat (limited to 'src/include/buffer.h')
-rw-r--r--src/include/buffer.h37
1 files changed, 18 insertions, 19 deletions
diff --git a/src/include/buffer.h b/src/include/buffer.h
index 1d5501f3..ee06371d 100644
--- a/src/include/buffer.h
+++ b/src/include/buffer.h
@@ -3,34 +3,33 @@
#include "stdint.h"
-/*
- * "start" and "end" denote the real boundaries of the buffer. "fill"
- * denotes the offset to the first free block in the buffer. (If the
- * buffer is full, "fill" will equal ( end - start ) ).
+/* @file */
+
+/**
+ * A buffer
+ *
+ * @c start and @c end denote the real boundaries of the buffer, and
+ * are physical addresses. @c fill denotes the offset to the first
+ * free block in the buffer. (If the buffer is full, @c fill will
+ * equal @c end-start.)
*
*/
struct buffer {
- physaddr_t start;
- physaddr_t end;
- off_t fill;
+ physaddr_t start; /**< Start of buffer in memory */
+ physaddr_t end; /**< End of buffer in memory */
+ off_t fill; /**< Offset to first gap in buffer */
};
-/*
- * Free blocks in the buffer start with a "tail byte". If non-zero,
- * this byte indicates that the free block is the tail of the buffer,
- * i.e. occupies all the remaining space up to the end of the buffer.
- * When the tail byte is non-zero, it indicates that the remainder of
- * the descriptor (the struct buffer_free_block) follows the tail
- * byte.
+/**
+ * A free block descriptor.
*
- * This scheme is necessary because we may end up with a tail that is
- * smaller than a struct buffer_free_block.
+ * See \ref buffer_int for a full description of the fields.
*
*/
struct buffer_free_block {
- char tail;
- physaddr_t next_free;
- physaddr_t end;
+ char tail; /**< Tail byte marker */
+ physaddr_t next_free; /**< Address of next free block */
+ physaddr_t end; /**< End of this block */
} __attribute__ (( packed ));
/* Functions in buffer.c */