Changeset 18 for trunk/kernel/mm/kmem.h
- Timestamp:
- Jun 3, 2017, 4:42:49 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/mm/kmem.h
r7 r18 62 62 63 63 /************************************************************************************* 64 * This defines the generic Allocation Flags that can be associated to 64 * This defines the generic Allocation Flags that can be associated to 65 65 * a Kernel Memory Request. 66 66 ************************************************************************************/ 67 67 68 68 #define AF_NONE 0x0000 // no attributes 69 #define AF_KERNEL 0x0001 // for kernel use 69 #define AF_KERNEL 0x0001 // for kernel use 70 70 #define AF_ZERO 0x0002 // must be reset to 0 71 71 72 72 /************************************************************************************* 73 * This structure defines a Kernel Memory Request. 73 * This structure defines a Kernel Memory Request. 74 74 ************************************************************************************/ 75 75 … … 80 80 uint32_t flags; /*! request attributes */ 81 81 void * ptr; /*! local pointer on allocated buffer (only used by free) */ 82 } 82 } 83 83 kmem_req_t; 84 84 … … 124 124 125 125 /************************************************************************************* 126 * This function s displaythe content of the KCM pointers Table126 * This function displays the content of the KCM pointers Table 127 127 ************************************************************************************/ 128 128 void kmem_print_kcm_table();
Note: See TracChangeset
for help on using the changeset viewer.