Added RTEMS API control structure to per task memory usage macro.

This commit is contained in:
Joel Sherrill
1996-01-19 22:22:12 +00:00
parent 709b93db98
commit c3dcd6e9b4
2 changed files with 4 additions and 2 deletions

View File

@@ -60,7 +60,8 @@
((RTEMS_MAXIMUM_PRIORITY + 1) * sizeof(Chain_Control ))
#define PER_TASK \
(sizeof (Thread_Control) + NAME_PTR_SIZE + HEAP_OVHD)
(sizeof (Thread_Control) + \
NAME_PTR_SIZE + HEAP_OVHD + sizeof( RTEMS_API_Control ))
#define PER_SEMAPHORE \
(sizeof (Semaphore_Control) + NAME_PTR_SIZE)
#define PER_TIMER \