mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-18 12:16:13 +08:00
Update.
* include/setjmp.h: Add libc_hidden_proto for __libc_longjmp. * sysdeps/generic/longjmp.c: Add libc_hidden_def for __longjmp. * sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S: Add __GI___longjmp alias.
This commit is contained in:
parent
9b4289aaf7
commit
e9395a94c3
@ -1,5 +1,10 @@
|
|||||||
2002-12-31 Ulrich Drepper <drepper@redhat.com>
|
2002-12-31 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* include/setjmp.h: Add libc_hidden_proto for __libc_longjmp.
|
||||||
|
* sysdeps/generic/longjmp.c: Add libc_hidden_def for __longjmp.
|
||||||
|
* sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S: Add
|
||||||
|
__GI___longjmp alias.
|
||||||
|
|
||||||
* include/setjmp.h: Add libc_hidden_proto for _setjmp.
|
* include/setjmp.h: Add libc_hidden_proto for _setjmp.
|
||||||
* sysdeps/alpha/setjmp.S: Add __GI__setjmp alias.
|
* sysdeps/alpha/setjmp.S: Add __GI__setjmp alias.
|
||||||
* sysdeps/arm/bsd-_setjmp.S: Likewise.
|
* sysdeps/arm/bsd-_setjmp.S: Likewise.
|
||||||
|
@ -19,6 +19,7 @@ extern void __libc_siglongjmp (sigjmp_buf env, int val)
|
|||||||
__attribute__ ((noreturn));
|
__attribute__ ((noreturn));
|
||||||
extern void __libc_longjmp (sigjmp_buf env, int val)
|
extern void __libc_longjmp (sigjmp_buf env, int val)
|
||||||
__attribute__ ((noreturn));
|
__attribute__ ((noreturn));
|
||||||
|
libc_hidden_proto (__libc_longjmp)
|
||||||
|
|
||||||
libc_hidden_proto (_setjmp)
|
libc_hidden_proto (_setjmp)
|
||||||
|
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2002-12-31 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/pthread/pt-initfini.c (call_initialize_minimal): Use
|
||||||
|
__pthread_initialize_minimal_internal not
|
||||||
|
__pthread_initialize_minimal.
|
||||||
|
|
||||||
2002-12-30 Ulrich Drepper <drepper@redhat.com>
|
2002-12-30 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* sysdeps/pthread/pt-initfini.c (call_initialize_minimal): Mark
|
* sysdeps/pthread/pt-initfini.c (call_initialize_minimal): Mark
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1991, 92, 94, 95, 97, 98, 2000 Free Software Foundation, Inc.
|
/* Copyright (C) 1991,92,94,95,97,98,2000,2002 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -40,6 +40,7 @@ __libc_siglongjmp (sigjmp_buf env, int val)
|
|||||||
}
|
}
|
||||||
|
|
||||||
strong_alias (__libc_siglongjmp, __libc_longjmp)
|
strong_alias (__libc_siglongjmp, __libc_longjmp)
|
||||||
|
libc_hidden_def (__libc_longjmp)
|
||||||
weak_alias (__libc_siglongjmp, _longjmp)
|
weak_alias (__libc_siglongjmp, _longjmp)
|
||||||
weak_alias (__libc_siglongjmp, longjmp)
|
weak_alias (__libc_siglongjmp, longjmp)
|
||||||
weak_alias (__libc_siglongjmp, siglongjmp)
|
weak_alias (__libc_siglongjmp, siglongjmp)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1997, 2001 Free Software Foundation, Inc.
|
/* Copyright (C) 1997, 2001, 2002 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Richard Henderson (rth@tamu.edu).
|
Contributed by Richard Henderson (rth@tamu.edu).
|
||||||
|
|
||||||
@ -46,6 +46,7 @@ END(__libc_siglongjmp)
|
|||||||
|
|
||||||
strong_alias(__libc_siglongjmp, __longjmp)
|
strong_alias(__libc_siglongjmp, __longjmp)
|
||||||
strong_alias(__libc_siglongjmp, __libc_longjmp)
|
strong_alias(__libc_siglongjmp, __libc_longjmp)
|
||||||
|
strong_alias(__libc_longjmp, __GI___libc_longjmp)
|
||||||
weak_alias(__libc_siglongjmp, longjmp)
|
weak_alias(__libc_siglongjmp, longjmp)
|
||||||
weak_alias(__libc_siglongjmp, _longjmp)
|
weak_alias(__libc_siglongjmp, _longjmp)
|
||||||
weak_alias(__libc_siglongjmp, siglongjmp)
|
weak_alias(__libc_siglongjmp, siglongjmp)
|
||||||
|
Loading…
Reference in New Issue
Block a user