diff options
author | Roland McGrath <roland@gnu.org> | 2001-06-17 21:09:28 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-06-17 21:09:28 +0000 |
commit | 5fe915ee12806a1cb6a5ece20746a4f080de0a65 (patch) | |
tree | 35dcf389db65c96eae7fddeed1d38a70552df573 /hurd/Makefile | |
parent | 21bc421fb026fe05ecf80882d7698020ad0e336c (diff) | |
download | glibc-5fe915ee12806a1cb6a5ece20746a4f080de0a65.zip glibc-5fe915ee12806a1cb6a5ece20746a4f080de0a65.tar.gz glibc-5fe915ee12806a1cb6a5ece20746a4f080de0a65.tar.bz2 |
* hurd/Makefile (routines): Add lookup-retry.
* hurd/hurdlookup.c (__hurd_file_name_lookup_retry): Broken out ...
* hurd/lookup-retry.c: ... into here, new file.
* sysdeps/mach/hurd/dl-sysdep.c (open_file): Call that instead
using of duplicate code here.
* hurd/hurdexec.c (_hurd_exec): Be robust for DTABLESIZE==0.
* posix/regex.c: Avoid an access violation if malloc fails.
Diffstat (limited to 'hurd/Makefile')
-rw-r--r-- | hurd/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/hurd/Makefile b/hurd/Makefile index 0d932e5..c807fac 100644 --- a/hurd/Makefile +++ b/hurd/Makefile @@ -1,4 +1,5 @@ -# Copyright (C) 1991,92,93,94,95,96,97,98,99 Free Software Foundation, Inc. +# Copyright (C) 1991,92,93,94,95,96,97,98,99,2001 +# Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -44,7 +45,8 @@ user-interfaces := $(addprefix hurd/,\ server-interfaces := hurd/msg faultexc routines = hurdstartup hurdinit \ - hurdid hurdlookup hurdpid hurdrlimit hurdprio hurdexec hurdselect \ + hurdid hurdpid hurdrlimit hurdprio hurdexec hurdselect \ + hurdlookup lookup-retry \ get-host set-host \ path-lookup \ setauth \ |