Changeset b541e1f in rtems
- Timestamp:
- 10/18/00 14:59:18 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 3815a2b
- Parents:
- 252565f
- Files:
-
- 2 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/rtems/ChangeLog
r252565f rb541e1f 1 2000-10-18 Joel Sherrill <joel@OARcorp.com> 2 3 * src/regiongetinfo.c, include/rtems/rtems/region.h, 4 include/rtems/rtems/types.h, src/Makefile.am: Added 5 region_get_information() and information control block. 6 * src/regiongetinfo.c: New file. 7 1 8 2000-09-29 Stephan Merker <merker@decrc.abb.de> 2 9 -
c/src/exec/rtems/include/rtems/rtems/region.h
r252565f rb541e1f 130 130 131 131 /* 132 * rtems_region_ident 133 * 134 * DESCRIPTION: 135 * 136 * This routine implements the rtems_region_get_information directive. 137 * This directive returns information about the heap associated with 138 * this region. 139 */ 140 141 rtems_status_code rtems_region_get_information( 142 Objects_Id id, 143 Heap_Information_block *the_info 144 ); 145 146 /* 132 147 * rtems_region_delete 133 148 * -
c/src/exec/rtems/include/rtems/rtems/types.h
r252565f rb541e1f 20 20 #endif 21 21 22 #include <rtems/score/heap.h> 22 23 #include <rtems/score/object.h> 23 24 #include <rtems/score/priority.h> … … 63 64 64 65 /* 66 * Region information block 67 */ 68 69 typedef Heap_Information_block region_information_block; 70 71 /* 65 72 * Time related 66 73 */ -
c/src/exec/rtems/src/Makefile.am
r252565f rb541e1f 44 44 REGION_C_FILES = region.c regioncreate.c regiondelete.c regionextend.c \ 45 45 regiongetsegment.c regiongetsegmentsize.c regionident.c \ 46 regionreturnsegment.c 46 regionreturnsegment.c regiongetinfo.c 47 47 48 48 PARTITION_C_FILES = part.c partcreate.c partdelete.c partgetbuffer.c \ -
cpukit/rtems/ChangeLog
r252565f rb541e1f 1 2000-10-18 Joel Sherrill <joel@OARcorp.com> 2 3 * src/regiongetinfo.c, include/rtems/rtems/region.h, 4 include/rtems/rtems/types.h, src/Makefile.am: Added 5 region_get_information() and information control block. 6 * src/regiongetinfo.c: New file. 7 1 8 2000-09-29 Stephan Merker <merker@decrc.abb.de> 2 9 -
cpukit/rtems/include/rtems/rtems/region.h
r252565f rb541e1f 130 130 131 131 /* 132 * rtems_region_ident 133 * 134 * DESCRIPTION: 135 * 136 * This routine implements the rtems_region_get_information directive. 137 * This directive returns information about the heap associated with 138 * this region. 139 */ 140 141 rtems_status_code rtems_region_get_information( 142 Objects_Id id, 143 Heap_Information_block *the_info 144 ); 145 146 /* 132 147 * rtems_region_delete 133 148 * -
cpukit/rtems/include/rtems/rtems/types.h
r252565f rb541e1f 20 20 #endif 21 21 22 #include <rtems/score/heap.h> 22 23 #include <rtems/score/object.h> 23 24 #include <rtems/score/priority.h> … … 63 64 64 65 /* 66 * Region information block 67 */ 68 69 typedef Heap_Information_block region_information_block; 70 71 /* 65 72 * Time related 66 73 */ -
cpukit/rtems/src/Makefile.am
r252565f rb541e1f 44 44 REGION_C_FILES = region.c regioncreate.c regiondelete.c regionextend.c \ 45 45 regiongetsegment.c regiongetsegmentsize.c regionident.c \ 46 regionreturnsegment.c 46 regionreturnsegment.c regiongetinfo.c 47 47 48 48 PARTITION_C_FILES = part.c partcreate.c partdelete.c partgetbuffer.c \
Note: See TracChangeset
for help on using the changeset viewer.