* user/conf.t: Change stack allocator signature.
This commit is contained in:
Joel Sherrill
2009-08-26 12:14:57 +00:00
parent 8de136b6c5
commit 7c9c8c8c59
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2009-08-26 Sebastian Huber <sebastian.huber@embedded-brains.de>
* user/conf.t: Change stack allocator signature.
2009-08-22 Roxana Leontie <roxana.leontie@gmail.com> 2009-08-22 Roxana Leontie <roxana.leontie@gmail.com>
* bsp_howto/framebuffer.t: documented the improvements made to * bsp_howto/framebuffer.t: documented the improvements made to

View File

@@ -928,7 +928,7 @@ typedef struct @{
void (*idle_task)( void ); void (*idle_task)( void );
uint32_t idle_task_stack_size; uint32_t idle_task_stack_size;
uint32_t interrupt_stack_size; uint32_t interrupt_stack_size;
void * (*stack_allocate_hook)( uint32_t ); void * (*stack_allocate_hook)( size_t );
void (*stack_free_hook)( void * ); void (*stack_free_hook)( void * );
bool do_zero_of_workspace; bool do_zero_of_workspace;
uint32_t maximum_drivers; uint32_t maximum_drivers;