Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Ulrich Drepper committed Nov 23, 2000
1 parent 1eaa106 commit de71a46
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
14 changes: 12 additions & 2 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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>

Expand Down
2 changes: 1 addition & 1 deletion csu/abi-note.S
Original file line number Diff line number Diff line change
Expand Up @@ -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. */

Expand Down
4 changes: 3 additions & 1 deletion csu/gmon-start.c
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
2 changes: 1 addition & 1 deletion manual/signal.texi
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/generic/bsd-_setjmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
immediate unwinds. */

int
setjmp (jmp_buf env)
_setjmp (jmp_buf env)
{
return __sigsetjmp (env, 0);
}

0 comments on commit de71a46

Please sign in to comment.