Raymond Toy pushed to branch rtoy-mmap-anon-control-and-binding-stacks at cmucl / cmucl
Commits: 32ae8b14 by Raymond Toy at 2015-10-03T14:30:14Z Fix silly typos.
- - - - -
1 changed file:
- src/lisp/solaris-os.c
Changes:
===================================== src/lisp/solaris-os.c ===================================== --- a/src/lisp/solaris-os.c +++ b/src/lisp/solaris-os.c @@ -435,7 +435,7 @@ static unsigned long *space_size[] = { #define HOLE_SIZE 0x2000
void -make_hole(void *start_start, size_t space_size) +make_hole(char *space_start, size_t space_size) { os_vm_address_t hole;
@@ -463,8 +463,8 @@ make_holes(void) * stacks are handled in make_stack_holes. */
- make_hole(spaces[0], sapce_sizes[0]); /* Read-only space */ - make_hole(spaces[1], space_sizes[1]); /* Static space */ + make_hole(spaces[0], *space_size[0]); /* Read-only space */ + make_hole(spaces[1], *space_size[1]); /* Static space */
/* Round up the dynamic_space_size to the nearest SPARSE_BLOCK_SIZE */ dynamic_space_size = round_up_sparse_size(dynamic_space_size);
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/32ae8b143a2c6caa09d8c97ae6...