diff options
author | DJ Delorie <dj@redhat.com> | 2007-09-06 17:22:36 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2007-09-06 17:22:36 +0000 |
commit | b95701711b680a7edd863ba5fbb275af41cc506f (patch) | |
tree | caa52733de66eff321eb2c12ff4466935d438dd4 | |
parent | 86a934d2251806fe5eed0d36c798c67c005f3fce (diff) | |
download | newlib-b95701711b680a7edd863ba5fbb275af41cc506f.zip newlib-b95701711b680a7edd863ba5fbb275af41cc506f.tar.gz newlib-b95701711b680a7edd863ba5fbb275af41cc506f.tar.bz2 |
merge from gcc
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/libiberty.h | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 3c6743b..9dfb1b0 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2007-09-06 Tom Tromey <tromey@redhat.com> + + * libiberty.h (pex_free): Document process killing. + 2007-08-31 Douglas Gregor <doug.gregor@gmail.com> * demangle.h (enum demangle_component_type): Add diff --git a/include/libiberty.h b/include/libiberty.h index 4e69734..6ea8761 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -1,6 +1,6 @@ /* Function declarations for libiberty. - Copyright 2001, 2002, 2005 Free Software Foundation, Inc. + Copyright 2001, 2002, 2005, 2007 Free Software Foundation, Inc. Note - certain prototypes declared in this header file are for functions whoes implementation copyright does not belong to the @@ -541,7 +541,8 @@ struct pex_time extern int pex_get_times (struct pex_obj *, int count, struct pex_time *vector); -/* Clean up a pex_obj. */ +/* Clean up a pex_obj. If you have not called pex_get_times or + pex_get_status, this will try to kill the subprocesses. */ extern void pex_free (struct pex_obj *); |