This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: More problems like (Re: lockf64 and GLIBC_2.1/GLIBC_2.1.1)


On Thu, Nov 09, 2000 at 08:33:25PM -0800, Ulrich Drepper wrote:
> "H . J . Lu" <hjl@valinux.com> writes:
> 
> > We may have more problems like that :-).. Here is a patch.
> 
> Not quite.  There are cases where the version definition is simply in
> the wrong file.  E.g., the getitimer version is needed for Linux/Alpha
> and therefore belongs into the file
> sysdeps/unix/sysv/linux/alpha/Versions.  Please check this before
> simply removing the definition.
> 

Here is the new patch.

-- 
H.J. Lu (hjl@valinux.com)
---
2000-11-09  H.J. Lu  <hjl@gnu.org>

	* time/Versions (GLIBC_2.1): Move getitimer to ...
	* sysdeps/unix/sysv/linux/alpha/Versions (GLIBC_2.1): Here.

Index: sysdeps/unix/sysv/linux/alpha/Versions
===================================================================
RCS file: /work/cvs/gnu/glibc-2.1/sysdeps/unix/sysv/linux/alpha/Versions,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 Versions
--- sysdeps/unix/sysv/linux/alpha/Versions	1998/07/15 00:23:42	1.1.1.1
+++ sysdeps/unix/sysv/linux/alpha/Versions	2000/11/10 04:52:15
@@ -32,7 +32,7 @@ libc {
     getrusage;
 
     # time type change
-    gettimeofday;
+    gettimeofday; getitimer;
 
     # i*
     ieee_get_fp_control; ieee_set_fp_control;
Index: time/Versions
===================================================================
RCS file: /work/cvs/gnu/glibc-2.1/time/Versions,v
retrieving revision 1.1.1.2
diff -u -p -r1.1.1.2 Versions
--- time/Versions	1999/01/30 00:03:09	1.1.1.2
+++ time/Versions	2000/11/10 03:30:40
@@ -44,6 +44,6 @@ libc {
     getdate_err;
 
     # g*
-    getdate; getdate_r; getitimer;
+    getdate; getdate_r;
   }
 }

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]