Changeset 66cb142 in rtems
- Timestamp:
- Aug 6, 2018, 8:51:00 AM (3 years ago)
- Branches:
- 5, master
- Children:
- b2de426
- Parents:
- b8eae140
- git-author:
- Sebastian Huber <sebastian.huber@…> (08/06/18 08:51:00)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (08/10/18 05:14:43)
- Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/include/rtems/rtems/part.h
rb8eae140 r66cb142 62 62 void *starting_address; 63 63 /** This field is the size of the Partition in bytes. */ 64 intptr_tlength;64 uintptr_t length; 65 65 /** This field is the size of each buffer in bytes */ 66 uint32_tbuffer_size;66 size_t buffer_size; 67 67 /** This field is the attribute set provided at create time. */ 68 68 rtems_attribute attribute_set; 69 69 /** This field is the of allocated buffers. */ 70 uint 32_tnumber_of_used_blocks;70 uintptr_t number_of_used_blocks; 71 71 /** This field is the chain used to manage unallocated buffers. */ 72 72 Chain_Control Memory; … … 89 89 rtems_name name, 90 90 void *starting_address, 91 uint 32_tlength,92 uint32_tbuffer_size,91 uintptr_t length, 92 size_t buffer_size, 93 93 rtems_attribute attribute_set, 94 94 rtems_id *id -
cpukit/rtems/src/partcreate.c
rb8eae140 r66cb142 48 48 rtems_name name, 49 49 void *starting_address, 50 uint 32_tlength,51 uint32_tbuffer_size,50 uintptr_t length, 51 size_t buffer_size, 52 52 rtems_attribute attribute_set, 53 53 rtems_id *id
Note: See TracChangeset
for help on using the changeset viewer.