Changeset 92ff266 in rtems
- Timestamp:
- 04/19/99 22:34:20 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b4b8d2eb
- Parents:
- 07b8f26
- Location:
- doc/FAQ
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/FAQ/FAQ.texi
r07b8f26 r92ff266 64 64 65 65 @include basic.texi 66 @include debug.texi 66 67 67 68 @ifinfo … … 78 79 @menu 79 80 * Basic Information:: 81 * Debugging Hints:: 80 82 @end menu 81 83 -
doc/FAQ/Makefile
r07b8f26 r92ff266 20 20 21 21 GENERATED_FILES= \ 22 basic.texi 22 basic.texi debug.texi 23 23 24 24 FILES=$(PROJECT).texi $(GENERATED_FILES) … … 66 66 -n "" ${*}.t 67 67 68 #target.texi: target.t Makefile69 # $(BMENU) -p "Introduction" \70 #-u "Top" \71 # -n "Makefiles" ${*}.t68 debug.texi: debug.t Makefile 69 $(BMENU) -c -p "" \ 70 -u "Top" \ 71 -n "" ${*}.t -
doc/FAQ/debug.t
r07b8f26 r92ff266 28 28 29 29 (gdb) p *(Heap_Block *)_Workspace_Area->first 30 $3 = {back_flag = 1, front_flag = 68552, next = 0x1e260, previous = 0x1e25c}30 $3 = @{back_flag = 1, front_flag = 68552, next = 0x1e260, previous = 0x1e25c@} 31 31 32 32 In this case, I had 68552 bytes left in the workspace. … … 37 37 38 38 (gdb) p *((Region_Control *)_Region_Information->local_table[1])->Memory->first 39 $9 = {back_flag = 1, front_flag = 8058280, next = 0x7ea5b4,40 previous = 0x7ea5b0 }39 $9 = @{back_flag = 1, front_flag = 8058280, next = 0x7ea5b4, 40 previous = 0x7ea5b0@} 41 41 42 42 In this case, the first block on the C Heap has 8,058,280 bytes left.
Note: See TracChangeset
for help on using the changeset viewer.