source: rtems/testsuites/sptests/spsize/size.c @ 5e7b6272

4.104.114.84.95
Last change on this file since 5e7b6272 was 5e7b6272, checked in by Joel Sherrill <joel.sherrill@…>, on 05/31/96 at 23:27:45

renamed _TOD_Ticks_since_boot as _Watchdog_Ticks_since_boot so the Watchdog
Handler could timestamp the starting and stopping of timers. Since
TOD is built on top of Watchdog, this avoided a circular dependency.

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