Made pointers constant and thereby reduced the code size slightly.
This commit is contained in:
parent
361e210751
commit
e4187b2fc8
1 changed files with 4 additions and 4 deletions
|
@ -189,10 +189,10 @@ static struct protected_mem_t {
|
||||||
coffee_page_t next_free;
|
coffee_page_t next_free;
|
||||||
char gc_wait;
|
char gc_wait;
|
||||||
} protected_mem;
|
} protected_mem;
|
||||||
static struct file *coffee_files = protected_mem.coffee_files;
|
static struct file * const coffee_files = protected_mem.coffee_files;
|
||||||
static struct file_desc *coffee_fd_set = protected_mem.coffee_fd_set;
|
static struct file_desc * const coffee_fd_set = protected_mem.coffee_fd_set;
|
||||||
static coffee_page_t *next_free = &protected_mem.next_free;
|
static coffee_page_t * const next_free = &protected_mem.next_free;
|
||||||
static char *gc_wait = &protected_mem.gc_wait;
|
static char * const gc_wait = &protected_mem.gc_wait;
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Add table
Reference in a new issue