Index: pptop.c =================================================================== RCS file: /sources/hurdextras/pptop/pptop.c,v retrieving revision 1.10 diff -u -r1.10 pptop.c --- pptop.c 25 Aug 2002 19:17:31 -0000 1.10 +++ pptop.c 14 Apr 2006 20:19:39 -0000 @@ -42,6 +42,7 @@ #include #include #include +#include #include #include #include @@ -261,7 +262,7 @@ struct ps_context *context; struct proc_stat_list *procset; error_t err; - ihash_t offsets; + hurd_ihash_t offsets; char *tty_names = 0; unsigned num_tty_names = 0; @@ -325,7 +326,7 @@ if (err) return err; - ihash_create (&offsets); + hurd_ihash_create (&offsets, HURD_IHASH_NO_LOCP); /* Lets try to run proc_stat_list_fmt on a proc_stat_list pointer (here it is procset). Index: configure.ac =================================================================== RCS file: /sources/hurdextras/pptop/configure.ac,v retrieving revision 1.3 diff -u -r1.3 configure.ac --- configure.ac 27 Aug 2002 03:44:11 -0000 1.3 +++ configure.ac 14 Apr 2006 20:19:39 -0000 @@ -1,5 +1,5 @@ # Process this file with autoconf to produce a configure script. -AC_INIT([pptop], [0.1.1], [hurdextras-hackers@mail.freesoftware.fsf.org]) +AC_INIT([pptop], [0.1.1], [hurdextras-hackers@nongnu.org]) AM_INIT_AUTOMAKE([pptop], [0.1.1]) AC_CONFIG_SRCDIR([aux.c]) AM_CONFIG_HEADER(config.h) Index: ChangeLog =================================================================== RCS file: /sources/hurdextras/pptop/ChangeLog,v retrieving revision 1.11 diff -u -r1.11 ChangeLog --- ChangeLog 27 Aug 2002 03:44:11 -0000 1.11 +++ ChangeLog 14 Apr 2006 20:19:39 -0000 @@ -1,3 +1,10 @@ +2006-04-14 Alfredo Beaumont Sainz + + * configure.ac: Updated contact email to hurdextras-hacker@nongnu.org + * pptop.c: Include for ihash type and functions. + (new_update): Change type name to hurd_ihash_t and call to + hurd_ihash_create to reflect change in the libihash API. + 2002-08-26 James A. Morrison * configure.ac: Bumped the version to 0.1.1.