diff options
author | Roland McGrath <roland@gnu.org> | 2001-08-15 06:10:55 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-08-15 06:10:55 +0000 |
commit | 0642002d933b3b135f9af076f862ad1504c59d4a (patch) | |
tree | 888656a9b905bf135363bdf548c3188b1f474bb6 /libstore | |
parent | d41992085608d485cf0e6f0282ff1d61c19fa9f1 (diff) |
.
Diffstat (limited to 'libstore')
-rw-r--r-- | libstore/ChangeLog | 19 |
1 files changed, 19 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. |