From: Paul Eggert Date: Fri, 26 Sep 2003 07:43:06 +0000 (+0000) Subject: Document recent checkins. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52f70a4b2fae0a54ed61898709994ec37e666f0a;p=pspp Document recent checkins. --- diff --git a/ChangeLog b/ChangeLog index 546a8545a2..0240e083df 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,18 @@ * modules/xgetdomainname: New file. * MODULES.html.sh (func_all_modules): Add getdomainname, xgetdomainname. +2003-09-24 Paul Eggert + + * README: Document assumptions that 'int' is at least 32 bits + wide, that integer arithmetic is 2's complement without overflow, + that there are no holes in integer values, that adding sizes of + two nonoverlapping objects can't overflow, and that all-bits-zero + yields scalar zero. Fix spelling and capitalization typos. + +2003-09-24 Simon Josefsson + + * modules/xgethostname: Add xgethostname.h. + 2003-09-17 Paul Eggert * gnulib-tool: Use "test -h", not "test -L", for portability diff --git a/lib/ChangeLog b/lib/ChangeLog index aa2153a4b1..fb74cdb575 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,20 @@ +2003-09-26 Paul Eggert + + * error.c (SIZE_MAX) [!defined SIZE_MAX]: Define. + (error_tail): Do not loop, reallocating temporary buffer, since + the original size is big enough. This avoids one potential size + overflow calculation. Check for size overflow when calculating + temporary buffer size. Free temporary buffer when done, if + it was allocated with malloc; this closes a memory leak. + + Merge error changes from glibc. + + * error.c, error.h: Update copyright notice header to match glibc. + * error.c [defined _LIBC]: Include , . + (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]: + Disable cancellation while printing error. + * error.h: Prepend __ to parameter names. + 2003-09-25 Karl Berry * argp-fmtstream.c, argp-help.c: update from libc. @@ -18,6 +35,12 @@ * getdomainname.h: New file. * getdomainname.c: New file. +2003-09-24 Paul Eggert + + * linebuffer.c (freebuffer): Don't free the argument, just + the buffer associated with the argument. Bug reported by + Simon Josefsson. + 2003-09-19 Karl Berry * argp.h: update from libc.