]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Thu, 23 Nov 2000 08:04:16 +0000 (08:04 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 23 Nov 2000 08:04:16 +0000 (08:04 +0000)
2000-11-18  Martin Buchholz  <martin@xemacs.org>

* csu/gmon-start.c (__gmon_start__): Avoid over-clever trick `if
(called++) return;'

2000-11-21  Alan Modra  <alan@linuxcare.com.au>

* sysdeps/generic/bsd-_setjmp.c (setjmp): Rename to _setjmp.

* csu/abi-note.S: Correct comment for operating system number.

* sysdeps/s390/bits/string.h (strncat): Add missing quotation marks.

ChangeLog
csu/abi-note.S
csu/gmon-start.c
manual/signal.texi
sysdeps/generic/bsd-_setjmp.c

index 5420cd377da32df85e5afc5f3febfba361e3d7a9..0ed71cdf7ae9b8ccaabc1cb04adcde3fe9f281e3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2000-11-18  Martin Buchholz  <martin@xemacs.org>
+
+       * csu/gmon-start.c (__gmon_start__): Avoid over-clever trick `if
+       (called++) return;'
+
+2000-11-21  Alan Modra  <alan@linuxcare.com.au>
+
+       * sysdeps/generic/bsd-_setjmp.c (setjmp): Rename to _setjmp.
+
+       * csu/abi-note.S: Correct comment for operating system number.
+
 2000-11-22  Ulrich Drepper  <drepper@redhat.com>
 
        * Versions.def: Add GLIBC_2.2.1 for glibc.
@@ -22,8 +33,7 @@
 
 2000-11-22  Andreas Jaeger  <aj@suse.de>
 
-       * sysdeps/s390/bits/string.h (strncat): Add missing quotation
-       marks.
+       * sysdeps/s390/bits/string.h (strncat): Add missing quotation marks.
 
 2000-11-21  Martin Schwidefsky  <schwidefsky@de.ibm.com>
 
index a5014ab5cc8a7c802e1b1973241bc604638f9f7e..6050883d34a29a8e5632c06f25282e68ae23f351 100644 (file)
@@ -50,7 +50,7 @@ offset        length  contents
    Linux community) use note type 1 and a vendor name string of "GNU"
    for a note descriptor that indicates ABI requirements.  The note data
    is four 32-bit words.  The first of these is an operating system
-   number (0=Hurd, 1=Linux, 2=Solaris, ...) and the remaining three
+   number (0=Linux, 1=Hurd, 2=Solaris, ...) and the remaining three
    identify the earliest release of that OS that supports this ABI.
    See abi-tags (top level) for details. */
 
index b5ad6f6ae8e20f1e5c3c2db25fd1d9f1534b1602..e5b45333cd63d71b4fd9297167a602774d962971 100644 (file)
@@ -49,8 +49,10 @@ __gmon_start__ (void)
      into every shared library, each of their init functions will call us.  */
   static int called;
 
-  if (called++)
+  if (called)
     return;
+
+  called = 1;
 #endif
 
   /* Start keeping profiling records.  */
index 94972fa43d647a63ce89ceb317c765161dc1f539..90839375e25341e79d70e7d6977f696f5eac51d6 100644 (file)
@@ -596,7 +596,7 @@ time used by the current process.  The name is an abbreviation for
 @comment signal.h
 @comment BSD
 @deftypevr Macro int SIGPROF
-This signal is typically indicates expiration of a timer that measures
+This signal typically indicates expiration of a timer that measures
 both CPU time used by the current process, and CPU time expended on
 behalf of the process by the system.  Such a timer is used to implement
 code profiling facilities, hence the name of this signal.
index 11cfdc0d7f66b7427ae10a9f4dd2897508575579..eba899003ac406697540bd04a33ed6c542af3868 100644 (file)
@@ -28,7 +28,7 @@
    immediate unwinds.  */
 
 int
-setjmp (jmp_buf env)
+_setjmp (jmp_buf env)
 {
   return __sigsetjmp (env, 0);
 }
This page took 0.053452 seconds and 5 git commands to generate.