source: rtems/doc/FAQ/debug.t @ 4b57d272

4.104.114.84.95
Last change on this file since 4b57d272 was 4b57d272, checked in by Joel Sherrill <joel.sherrill@…>, on 07/09/99 at 19:36:51

Added information on the workspace versus heap.

  • Property mode set to 100644
File size: 1.7 KB
RevLine 
[07b8f26]1@c
2@c  COPYRIGHT (c) 1988-1998.
3@c  On-Line Applications Research Corporation (OAR).
4@c  All rights reserved.
5@c
6@c  $Id$
7@c
8
9@chapter Debugging Hints
10
11The questions in this category are hints that can ease debugging.
12
13@section How do I determine how much memory is left?
14
15First there are two types of memory: RTEMS Workspace and Program Heap.
[4b57d272]16The RTEMS Workspace is the memory used by RTEMS to allocate control
17structures for system objects like tasks and semaphores, task
18stacks, and some system data structures like the ready chains.
19The Program Heap is where "malloc'ed" memory comes from.
20
[07b8f26]21Both are essentially managed as heaps based on the Heap Manager
22in the RTEMS SuperCore.  The RTEMS Workspace uses the Heap Manager
23directly while the Program Heap is actually based on an RTEMS Region
24from the Classic API.  RTEMS Regions are in turn based on the Heap
25Manager in the SuperCore.
26
27@subsection How much memory is left in the RTEMS Workspace?
28
29An executive workspace overage can be fairly easily spotted with a
30debugger.  Look at _Workspace_Area.  If first == last, then there is only
31one free block of memory in the workspace (very likely if no task
32deletions).  Then do this:
33
34(gdb) p *(Heap_Block *)_Workspace_Area->first
[92ff266]35$3 = @{back_flag = 1, front_flag = 68552, next = 0x1e260, previous = 0x1e25c@}
[07b8f26]36
37In this case, I had 68552 bytes left in the workspace.
38
39@subsection How much memory is left in the Heap?
40
41The C heap is a region so this should work:
42
43(gdb) p *((Region_Control *)_Region_Information->local_table[1])->Memory->first
[92ff266]44$9 = @{back_flag = 1, front_flag = 8058280, next = 0x7ea5b4,
45  previous = 0x7ea5b0@}
[07b8f26]46
47In this case, the first block on the C Heap has 8,058,280 bytes left.
48
Note: See TracBrowser for help on using the repository browser.