summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-04-22 16:30:30 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-04-22 16:30:30 +0000
commitf581163abdadba6368b78ee499907881d1fef666 (patch)
treef148d5c2f522d212bcfbee5d62271e8550e262e8
parentupdartes from Tony Bennett (diff)
downloadrtems-f581163abdadba6368b78ee499907881d1fef666.tar.bz2
added stack allocation fields to the cpu table
-rw-r--r--c/src/exec/score/cpu/i386/cpu.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/c/src/exec/score/cpu/i386/cpu.h b/c/src/exec/score/cpu/i386/cpu.h
index 3a9a7da433..85042fce66 100644
--- a/c/src/exec/score/cpu/i386/cpu.h
+++ b/c/src/exec/score/cpu/i386/cpu.h
@@ -104,6 +104,9 @@ typedef struct {
boolean do_zero_of_workspace;
unsigned32 interrupt_stack_size;
unsigned32 extra_mpci_receive_server_stack;
+ void * (*stack_allocate_hook)( unsigned32 );
+ void (*stack_free_hook)( void* );
+ /* end of fields required on all CPUs */
unsigned32 interrupt_table_segment;
void *interrupt_table_offset;