diff options
-rw-r--r-- | libstore/ChangeLog | 19 | ||||
-rw-r--r-- | storeio/ChangeLog | 8 |
2 files changed, 27 insertions, 0 deletions
diff --git a/libstore/ChangeLog b/libstore/ChangeLog index 7e373bf3..86f23285 100644 --- a/libstore/ChangeLog +++ b/libstore/ChangeLog @@ -1,3 +1,22 @@ +2001-08-12 Neal H Walfield <neal@cs.uml.edu> + + * copy.c (copy_read): The protocol dictates that *LEN is in + bytes, not pages. + (copy_write): Be sure that the buffer passed to vm_read is + page-aligned. When determining how much to copy, use LEN, not the + uninitialized *AMOUNT. + (copy_clone): Use memcpy, not bcopy. + * derive.c: Include <sys/types.h> and <mach.h>. + (_store_derive): Initialize STORE->wrap_src. + + * set.c: Do not include <malloc.h>. + Include <stdlib.h>, <errno.h> and <mach.h>. + (store_set_runs): Use memcpy, not bcopy. + (store_set_name): Use strdup, not a strlen, malloc and strcpy. + * zero.c (zero_read): When checking if mmap failed, compare + against MAP_FAILED, not -1. + Use memset, not bzero. + 2001-08-03 Roland McGrath <roland@frob.com> * Makefile (HURDLIBS): Define it so we link in libshouldbeinlibc. diff --git a/storeio/ChangeLog b/storeio/ChangeLog index 5e08f51a..1f4a8368 100644 --- a/storeio/ChangeLog +++ b/storeio/ChangeLog @@ -1,3 +1,11 @@ +2001-08-12 Neal H Walfield <neal@cs.uml.edu> + + * pager.c: Include <errno.h>. + (pager_read_page): Use memset, not bzero. + * storeio.c (check_open_hook): Typo fix in comment. + (trivfs_modify_stat): STORE->size is a store_offset_t. + It not a vm_size_t. + 2001-05-06 Marcus Brinkmann <marcus@gnu.org> * dev.c (dev_open): Do not create/open the store with |