source: rtems/testsuites/sptests/spsize/size.c @ 84dc9df

5
Last change on this file since 84dc9df was 84dc9df, checked in by Sebastian Huber <sebastian.huber@…>, on 04/04/16 at 04:17:36

score: Use red-black tree for active MP proxies

Update #2555.

  • Property mode set to 100644
File size: 20.0 KB
Line 
1/**
2 *  @file
3 *
4 *  This program is run to determine the data space and work space
5 *  requirements of the current version of RTEMS.
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2014.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.org/license/LICENSE.
15 */
16
17#ifdef HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems/system.h>
22#include <rtems/config.h>
23#include <rtems/score/copyrt.h>
24#include <rtems/rtems/clock.h>
25#include <rtems/rtems/tasksimpl.h>
26#include <rtems/rtems/dpmemimpl.h>
27#include <rtems/rtems/eventimpl.h>
28#include <rtems/extensionimpl.h>
29#include <rtems/fatal.h>
30#include <rtems/init.h>
31#include <rtems/score/isr.h>
32#include <rtems/rtems/intr.h>
33#include <rtems/io.h>
34#include <rtems/rtems/messageimpl.h>
35#if defined(RTEMS_MULTIPROCESSING)
36#include <rtems/rtems/mp.h>
37#include <rtems/score/mpciimpl.h>
38#endif
39#include <rtems/rtems/partimpl.h>
40#include <rtems/score/priority.h>
41#include <rtems/rtems/ratemonimpl.h>
42#include <rtems/rtems/regionimpl.h>
43#include <rtems/rtems/semimpl.h>
44#include <rtems/rtems/signal.h>
45#include <rtems/score/scheduler.h>
46#include <rtems/score/sysstate.h>
47#include <rtems/score/thread.h>
48#include <rtems/rtems/timerimpl.h>
49#include <rtems/score/todimpl.h>
50#include <rtems/score/userextimpl.h>
51#include <rtems/score/watchdogimpl.h>
52#include <rtems/score/wkspace.h>
53#if defined(RTEMS_SMP)
54  #include <rtems/score/smp.h>
55#endif
56
57#include <stdlib.h>
58#include <stdio.h>
59#include <unistd.h>
60#include <tmacros.h>
61
62#include "system.h"
63
64/* external function prototypes */
65int getint( void );
66void size_rtems(int mode);
67void help_size(void);
68void print_formula(void);
69
70
71/* These are always defined by the executive.
72 *
73 * #include <rtems/copyrt.h>
74 * #include <rtems/tables.h>
75 */
76#define  HEAP_OVHD        16    /* wasted heap space per task stack */
77#define  NAME_PTR_SIZE     8    /* size of name and pointer table entries */
78
79/*
80 *  This assumes the default Priority Scheduler
81 */
82#include <rtems/score/prioritybitmapimpl.h>
83#include <rtems/score/schedulerpriority.h>
84
85/* Priority scheduling per-thread consumption. Gets
86 * included in the PER_TASK consumption.
87 */
88#define SCHEDULER_TASK_WKSP     (sizeof(Scheduler_priority_Node))
89
90/* Priority scheduling workspace consumption
91 *
92 * Include allocation of ready queue.
93 */
94#define SCHEDULER_WKSP_SIZE  \
95    (sizeof(Scheduler_priority_Context) + \
96     RTEMS_MAXIMUM_PRIORITY * sizeof(Chain_Control ))
97/****** END OF MEMORY USAGE OF DEFAULT PRIORITY SCHEDULER ******/
98
99#define PER_TASK      \
100     (long) (sizeof (Thread_Control) + \
101      NAME_PTR_SIZE + HEAP_OVHD + sizeof( RTEMS_API_Control ) + \
102      SCHEDULER_TASK_WKSP )
103#define PER_SEMAPHORE \
104     (long) (sizeof (Semaphore_Control) + NAME_PTR_SIZE)
105#define PER_TIMER     \
106     (long) (sizeof (Timer_Control) + NAME_PTR_SIZE)
107#define PER_MSGQ      \
108     (long) (sizeof (Message_queue_Control) + NAME_PTR_SIZE)
109#define PER_REGN      \
110     (long) (sizeof (Region_Control) + NAME_PTR_SIZE)
111#define PER_PART      \
112     (long) (sizeof (Partition_Control) + NAME_PTR_SIZE)
113#define PER_PERIOD      \
114     (long) (sizeof (Rate_monotonic_Control) + NAME_PTR_SIZE)
115#define PER_PORT      \
116     (long) (sizeof (Dual_ported_memory_Control) + NAME_PTR_SIZE)
117#define PER_EXTENSION     \
118     (long) (sizeof (Extension_Control) + NAME_PTR_SIZE)
119
120#define PER_DRV       (long) (0)
121#define PER_FPTASK    (long) (CONTEXT_FP_SIZE)
122#define PER_GOBTBL    (long) (sizeof (Chain_Control)*4)
123#define PER_NODE      (long) PER_GOBTBL
124#if defined(RTEMS_MULTIPROCESSING)
125#define PER_GOBJECT   (long) (sizeof (Objects_MP_Control))
126#else
127#define PER_GOBJECT   (long) 0
128#endif
129#define PER_PROXY     (long) (sizeof (Thread_Proxy_control))
130
131#if !defined(RTEMS_MULTIPROCESSING) || (CPU_ALL_TASKS_ARE_FP != TRUE)
132#define MPCI_RECEIVE_SERVER_FP (long) 0
133#else
134#define MPCI_RECEIVE_SERVER_FP (long) (sizeof( Context_Control_fp ))
135#endif
136
137#if (CPU_IDLE_TASK_IS_FP == TRUE)
138#define SYSTEM_IDLE_FP (long) (sizeof( Context_Control_fp ))
139#else
140#define SYSTEM_IDLE_FP (long) 0
141#endif
142
143#if !defined(RTEMS_MULTIPROCESSING)
144#define MPCI_RECEIVE_SERVER_STACK_SIZE 0
145#endif
146
147#if defined(RTEMS_MULTIPROCESSING)
148#define MPCI_RECEIVE_SERVER_STACK_SIZE \
149
150#define MP_SYSTEM_TASKS \
151   (STACK_MINIMUM_SIZE + CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK + \
152    sizeof(Thread_Control) + \
153    MPCI_RECEIVE_SERVER_FP)
154
155extern CORE_semaphore_Control _MPCI_Semaphore;
156#else
157#define MP_SYSTEM_TASKS 0
158#endif
159
160/*
161 *  Idle and the MPCI Receive Server Threads
162 */
163
164#define SYSTEM_TASKS  \
165    (STACK_MINIMUM_SIZE + sizeof(Thread_Control) + SYSTEM_IDLE_FP + \
166     MP_SYSTEM_TASKS)
167
168/* FIXME: uint32_t doesn't seem right */
169uint32_t   sys_req;
170
171void size_rtems(
172  int mode
173)
174{
175int uninitialized = 0;
176int initialized = 0;
177
178/*
179 *  The following data is allocated for each Manager:
180 *
181 *    + Per Manager Object Information
182 *      - local pointer table
183 *      - local name table
184 *      - the object's control blocks
185 *      - global name chains
186 *
187 *  The following is the data allocate from the RTEMS Workspace Area.
188 *  The order indicates the order in which RTEMS allocates it.
189 *
190 *    + Object MP
191 *      - Global Object CB's
192 *    + Thread MP
193 *      - Proxies Chain
194 *    + Scheduler
195 *      - Ready queue
196 *    + Interrupt Manager
197 *      - Interrupt Stack
198 *    + Timer Manager
199 *      - per Manager Object Data
200 *    + Extension Manager
201 *      - per Manager Object Data
202 *    + Message Queue Manager
203 *      - per Manager Object Data
204 *      - Message Buffers
205 *    + Semaphore Manager
206 *      - per Manager Object Data
207 *    + Partition Manager
208 *      - per Manager Object Data
209 *    + Region Manager
210 *      - per Manager Object Data
211 *    + Dual Ported Memory Manager
212 *      - per Manager Object Data
213 *    + Rate Monotonic Manager
214 *      - per Manager Object Data
215 *    + Internal Threads Handler
216 *      - MPCI Receive Server Thread TCB
217 *      - IDLE Thread TCB
218 *      - MPCI Receive Server Thread stack
219 *      - MPCI Receive Server Thread FP area (if CPU requires this)
220 *      - IDLE Thread stack
221 *      - IDLE Thread FP area (if CPU requires this)
222 *
223 *  This does not take into account any CPU dependent alignment requirements.
224 *
225 *  The following calculates the overhead needed by RTEMS from the
226 *  Workspace Area.
227 */
228sys_req = SYSTEM_TASKS        +     /* MPCI Receive Server and IDLE */
229          NAME_PTR_SIZE       +     /* Task Overhead */
230          SCHEDULER_WKSP_SIZE +     /* Scheduler Overhead */
231          NAME_PTR_SIZE       +     /* Timer Overhead */
232          NAME_PTR_SIZE       +     /* Semaphore Overhead */
233          NAME_PTR_SIZE       +     /* Message Queue Overhead */
234          NAME_PTR_SIZE       +     /* Region Overhead */
235          NAME_PTR_SIZE       +     /* Partition Overhead */
236          NAME_PTR_SIZE       +     /* Dual-Ported Memory Overhead */
237          NAME_PTR_SIZE       +     /* Rate Monotonic Overhead */
238          NAME_PTR_SIZE       +     /* Extension Overhead */
239          PER_NODE;                 /* Extra Gobject Table */
240
241uninitialized =
242/*address.h*/   0                                         +
243
244/*asr.h*/       0                                         +
245
246/*attr.h*/      0                                         +
247
248/*bitfield.h*/  0                                         +
249
250/*chain.h*/     0                                         +
251
252/*clock.h*/     0                                         +
253
254/*config.h*/
255        #if defined(RTEMS_MULTIPROCESSING)
256                (sizeof _Configuration_MP_table)          +
257        #endif
258
259/*context.h*/   (sizeof _Thread_Dispatch_necessary)        +
260
261/*copyrt.h*/    0                                         +
262
263/*dpmemimpl.h*/ (sizeof _Dual_ported_memory_Information)  +
264
265#if defined(RTEMS_MULTIPROCESSING)
266/*eventmp.h*/   0                                         +
267#endif
268
269/*extensionimpl.h*/ (sizeof _Extension_Information)       +
270
271/*fatal.h*/     0                                         +
272
273/*heap.h*/      0                                         +
274
275/*init.h*/      0                                         +
276
277/*interr.h*/    (sizeof _Internal_errors_What_happened)   +
278
279/*intr.h*/      0                                         +
280
281/*isr.h*/       (sizeof _ISR_Nest_level)                  +
282#if (CPU_SIMPLE_VECTORED_INTERRUPTS == TRUE)
283                (sizeof _ISR_Vector_table)                +
284#endif
285
286/*messageimpl.h*/ (sizeof _Message_queue_Information)     +
287
288/*modes.h*/     0                                         +
289
290#if defined(RTEMS_MULTIPROCESSING)
291/*mp.h*/        0                                         +
292#endif
293
294#if defined(RTEMS_MULTIPROCESSING)
295/*mpciimpl.h*/  (sizeof _MPCI_Remote_blocked_threads)     +
296                (sizeof _MPCI_Semaphore)                  +
297                (sizeof _MPCI_table)                      +
298                (sizeof _MPCI_Receive_server_tcb)         +
299                (sizeof _MPCI_Packet_processors)          +
300#endif
301
302#if defined(RTEMS_MULTIPROCESSING)
303/*mppkt.h*/     0                                         +
304#endif
305
306#if defined(RTEMS_MULTIPROCESSING)
307/*mptables.h*/  0                                         +
308#endif
309
310#if defined(RTEMS_MULTIPROCESSING)
311/*msgmp.h*/     0                                         +
312#endif
313
314/*object.h*/    (sizeof _Objects_Local_node)              +
315                (sizeof _Objects_Maximum_nodes)           +
316                (sizeof _Objects_Information_table)       +
317
318#if defined(RTEMS_MULTIPROCESSING)
319/*objectmp.h*/  (sizeof _Objects_MP_Maximum_global_objects) +
320                (sizeof _Objects_MP_Inactive_global_objects) +
321#endif
322
323/*options.h*/   0                                         +
324
325/*partimpl.h*/  (sizeof _Partition_Information)           +
326
327#if defined(RTEMS_MULTIPROCESSING)
328/*partmp.h*/    0                                         +
329#endif
330
331/*percpu.h*/    (_SMP_Get_processor_count() * sizeof(Per_CPU_Control))  +
332
333/*ratemonimpl.h*/ (sizeof _Rate_monotonic_Information)    +
334
335/*regionimpl.h*/ (sizeof _Region_Information)             +
336
337#if defined(RTEMS_MULTIPROCESSING)
338/*regionmp.h*/  0                                         +
339#endif
340
341/*rtems.h*/     /* Not applicable */
342
343/*semimpl.h*/   (sizeof _Semaphore_Information)           +
344
345#if defined(RTEMS_MULTIPROCESSING)
346/*semmp.h*/     0                                         +
347#endif
348
349/*signal.h*/    0                                         +
350
351/*signalmp.h*/  0                                         +
352
353/*stack.h*/     0                                         +
354
355/*states.h*/    0                                         +
356
357/*status.h*/    0                                         +
358
359/*sysstate.h*/  (sizeof _System_state_Current)            +
360#if defined(RTEMS_MULTIPROCESSING)
361                (sizeof _System_state_Is_multiprocessing) +
362#endif
363
364#if defined(RTEMS_MULTIPROCESSING)
365/*taskmp.h*/    0                                         +
366#endif
367
368/*tasksimpl.h*/ (sizeof _RTEMS_tasks_Information)         +
369
370/*thread.h*/    (sizeof _Thread_Dispatch_disable_level)   +
371                (sizeof _Thread_Executing)                +
372                (sizeof _Thread_Heir)                     +
373#if (CPU_HARDWARE_FP == 1) || (CPU_SOFTWARE_FP == 1)
374                (sizeof _Thread_Allocated_fp)             +
375#endif
376                (sizeof _Thread_Internal_information)     +
377
378/*threadq.h*/
379
380/*timerimpl.h*/ (sizeof _Timer_Information)               +
381
382/*tqdata.h*/    0                                         +
383
384/*types.h*/     0                                         +
385
386/*userext.h*/   (sizeof _User_extensions_List)            +
387
388/*watchdog.h*/  (sizeof _Watchdog_Ticks_since_boot)       +
389
390/*wkspace.h*/   (sizeof _Workspace_Area);
391
392#ifndef unix  /* make sure this is not a native compile */
393
394#ifdef __i386__
395
396/* cpu.h */
397uninitialized += (sizeof _CPU_Null_fp_context);
398
399#if (CPU_ALLOCATE_INTERRUPT_STACK == TRUE)
400uninitialized += (sizeof _CPU_Interrupt_stack_low) +
401                 (sizeof _CPU_Interrupt_stack_high);
402#endif
403
404#endif
405
406#ifdef __mc68000__
407
408/* cpu.h */
409uninitialized += (sizeof _CPU_Interrupt_stack_low) +
410                 (sizeof _CPU_Interrupt_stack_high);
411
412#endif
413
414#ifdef __sparc__
415
416/* cpu.h */
417uninitialized += (sizeof _CPU_Interrupt_stack_low) +
418                 (sizeof _CPU_Interrupt_stack_high) +
419                 (sizeof _CPU_Null_fp_context);
420
421#endif
422
423
424#ifdef no_cpu
425
426/* cpu.h */
427uninitialized += (sizeof _CPU_Null_fp_context) +
428                 (sizeof _CPU_Interrupt_stack_low) +
429                 (sizeof _CPU_Interrupt_stack_high) +
430                 (sizeof _CPU_Thread_dispatch_pointer);
431
432#endif
433
434#ifdef __PPC__
435
436/* cpu.h */
437uninitialized += (sizeof _CPU_Interrupt_stack_low) +
438                 (sizeof _CPU_Interrupt_stack_high);
439
440#endif
441#endif /* !unix */
442
443initialized +=
444/*copyrt.h*/    (strlen(_Copyright_Notice)+1)             +
445
446#if defined(RTEMS_MULTIPROCESSING)
447                (sizeof _Initialization_Default_multiprocessing_table)  +
448#endif
449                (strlen(_RTEMS_version)+1);
450
451
452
453#ifndef unix /* make sure this is not native */
454#ifdef __sparc__
455
456initialized +=  (sizeof _CPU_Trap_slot_template);
457
458#endif
459#endif /* !unix */
460
461puts( "" );
462
463  if ( mode == 0 ) help_size();
464  else             print_formula();
465
466printf( "\n" );
467printf( "RTEMS uninitialized data consumes %d bytes\n", uninitialized );
468printf( "RTEMS initialized data consumes %d bytes\n", initialized );
469
470}
471
472void help_size()
473{
474int c = '\0';
475int break_loop;
476int total_size;
477int task_stacks;
478int interrupt_stack;
479int maximum_tasks, size_tasks;
480int maximum_sems, size_sems;
481int maximum_timers, size_timers;
482int maximum_msgqs, size_msgqs;
483int maximum_msgs, size_msgs_overhead;
484int maximum_regns, size_regns;
485int maximum_parts, size_parts;
486int maximum_ports, size_ports;
487int maximum_periods, size_periods;
488int maximum_extensions, size_extensions;
489int maximum_drvs, size_drvs;
490int maximum_fps, size_fps;
491int maximum_nodes, size_nodes;
492int maximum_gobjs, size_gobjs;
493int maximum_proxies, size_proxies;
494
495total_size = sys_req;    /* Fixed Overhead */
496printf( "What is maximum_tasks? " );
497maximum_tasks = getint();
498size_tasks = PER_TASK * maximum_tasks;
499total_size += size_tasks;
500
501printf( "What is maximum_semaphores? " );
502maximum_sems = getint();
503size_sems = PER_SEMAPHORE * maximum_sems;
504total_size += size_sems;
505
506printf( "What is maximum_timers? " );
507maximum_timers = getint();
508size_timers = PER_TIMER * maximum_timers;
509total_size += size_timers;
510
511printf( "What is maximum_message_queues? " );
512maximum_msgqs = getint();
513size_msgqs = PER_MSGQ * maximum_msgqs;
514total_size += size_msgqs;
515
516printf( "What is maximum_messages?  XXXX " );
517maximum_msgs = getint();
518size_msgs_overhead = 0;
519total_size += size_msgs_overhead;
520
521printf( "What is maximum_regions? " );
522maximum_regns = getint();
523size_regns = PER_REGN * maximum_regns;
524total_size += size_regns;
525
526printf( "What is maximum_partitions? " );
527maximum_parts = getint();
528size_parts = PER_PART * maximum_parts;
529total_size += size_parts;
530
531printf( "What is maximum_ports? " );
532maximum_ports = getint();
533size_ports = PER_PORT * maximum_ports;
534total_size += size_ports;
535
536printf( "What is maximum_periods? " );
537maximum_periods = getint();
538size_periods = PER_PERIOD * maximum_periods;
539total_size += size_periods;
540
541printf( "What is maximum_extensions? " );
542maximum_extensions = getint();
543size_extensions = PER_EXTENSION * maximum_extensions;
544total_size += size_extensions;
545
546printf( "What is number_of_device_drivers? " );
547maximum_drvs = getint();
548size_drvs = PER_DRV  * maximum_drvs;
549total_size += size_drvs;
550
551printf( "What will be total stack requirement for all tasks? " );
552task_stacks = getint();
553total_size += task_stacks;
554
555printf( "What is the size of the interrupt stack? " );
556interrupt_stack = getint();
557total_size += interrupt_stack;
558
559printf( "How many tasks will be created with the FP flag? " );
560maximum_fps = getint();
561size_fps = PER_FPTASK  * maximum_fps;
562total_size += size_fps;
563
564printf( "Is this a single processor system? " );
565for ( break_loop=0 ; !break_loop; c = getchar() ) {
566  switch ( c ) {
567    case 'Y':  case 'y':
568    case 'N':  case 'n':
569      break_loop = 1;
570      break;
571  }
572}
573printf( "%c\n", c );
574if ( c == 'n' || c == 'N' ) {
575  printf( "What is maximum_nodes? " );
576  maximum_nodes = getint();
577  size_nodes = PER_NODE * maximum_nodes;
578  total_size += size_nodes;
579  printf( "What is maximum_global_objects? " );
580  maximum_gobjs = getint();
581  size_gobjs = PER_GOBJECT * maximum_gobjs;
582  total_size += size_gobjs;
583  printf( "What is maximum_proxies? " );
584  maximum_proxies = getint();
585  size_proxies = PER_PROXY * maximum_proxies;
586  total_size += size_proxies;
587} else {
588  maximum_nodes = 0;
589  size_nodes = PER_NODE * 0;
590  maximum_gobjs = 0;
591  size_gobjs = PER_GOBJECT * 0;
592  maximum_proxies = 0;
593  size_proxies = PER_PROXY * 0;
594}
595
596printf( "\n\n" );
597printf( " ************** EXECUTIVE WORK SPACE REQUIRED **************\n" );
598printf( " Tasks                - %03d * %03ld            =  %ld\n",
599          maximum_tasks, PER_TASK, (long) size_tasks );
600printf( " Semaphores           - %03d * %03ld            =  %ld\n",
601          maximum_sems, PER_SEMAPHORE, (long) size_sems );
602printf( " Timers               - %03d * %03ld            =  %ld\n",
603          maximum_timers, PER_TIMER, (long) size_timers );
604printf( " Msg Queues           - %03d * %03ld            =  %ld\n",
605          maximum_msgqs, PER_MSGQ, (long) size_msgqs );
606printf( " Messages Overhead    - %03d * %03d            =  %ld\n",
607          maximum_msgs, 0 /* PER_MSG_OVERHEAD */, (long) size_msgs_overhead );
608printf( " Regions              - %03d * %03ld            =  %ld\n",
609          maximum_regns, PER_REGN, (long) size_regns);
610printf( " Partitions           - %03d * %03ld            =  %ld\n",
611          maximum_parts, PER_PART, (long) size_parts );
612printf( " Periods              - %03d * %03ld            =  %ld\n",
613          maximum_periods, PER_PERIOD, (long) size_periods );
614printf( " Extensions           - %03d * %03ld            =  %ld\n",
615          maximum_extensions, PER_EXTENSION, (long) size_extensions );
616printf( " Device Drivers       - %03d * %03ld            =  %ld\n",
617          maximum_drvs, PER_DRV, (long) size_drvs );
618
619printf( " System Requirements  - %04" PRIu32 "                 =  %"PRIu32 "\n",
620          sys_req, sys_req );
621
622printf( " Floating Point Tasks - %03d * %03ld            =  %ld\n",
623          maximum_fps, PER_FPTASK, (long) size_fps );
624printf( " Application Task Stacks -                     =  %d\n",
625          task_stacks );
626printf( " Interrupt Stacks -                            =  %d\n",
627          task_stacks );
628printf( " \n" );
629printf( " Global object tables - %03d * %03ld            =  %ld\n",
630          maximum_nodes, PER_NODE, (long) size_nodes );
631printf( " Global objects       - %03d * %03ld            =  %ld\n",
632          maximum_gobjs, PER_GOBJECT, (long) size_gobjs );
633printf( " Proxies              - %03d * %03ld            =  %ld\n",
634          maximum_proxies, PER_PROXY, (long) size_proxies );
635printf( "\n\n" );
636printf( " TOTAL                                       = %d bytes\n",
637      total_size );
638}
639
640void print_formula()
641{
642printf( " ************** EXECUTIVE WORK SPACE FORMULA **************\n" );
643printf( " Tasks                - maximum_tasks * %ld\n",      PER_TASK );
644printf( " Timers               - maximum_timers * %ld\n",     PER_TIMER );
645printf( " Semaphores           - maximum_semaphores * %ld\n", PER_SEMAPHORE);
646printf( " Message Queues       - maximum_message_queues * %ld\n", PER_MSGQ );
647printf( " Messages             -\n");
648printf( " Regions              - maximum_regions * %ld\n",    PER_REGN );
649printf( " Partitions           - maximum_partitions * %ld\n", PER_PART );
650printf( " Ports                - maximum_ports * %ld\n",      PER_PORT );
651printf( " Periods              - maximum_periods * %ld\n",    PER_PORT );
652printf( " Extensions           - maximum_extensions * %ld\n", PER_EXTENSION );
653printf( " Device Drivers       - number_of_device_drivers * %ld\n", PER_DRV);
654printf( " System Requirements  - %" PRIu32 "\n",              sys_req );
655printf( " Floating Point Tasks - FPMASK Tasks * %ld\n",       PER_FPTASK );
656printf( " User's Tasks' Stacks -\n" );
657printf( " Interrupt Stack      -\n" );
658printf( " \n" );
659printf( " Global object tables - maximum_nodes * %ld\n",          PER_NODE );
660printf( " Global objects       - maximum_global_objects * %ld\n", PER_GOBJECT );
661printf( " Proxies              - maximum_proxies * %ld\n",        PER_PROXY );
662}
Note: See TracBrowser for help on using the repository browser.