diff options
author | julian <julian@FreeBSD.org> | 1998-12-19 02:55:34 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 1998-12-19 02:55:34 +0000 |
commit | 61490236bcee0615867517e76eb92c1b20075f82 (patch) | |
tree | 9a109f9996daee77886aee1062aa97f90896dd47 /lib | |
parent | da7c7a2e129d402169d2fbc6d83f596d7d16d83a (diff) | |
download | FreeBSD-src-61490236bcee0615867517e76eb92c1b20075f82.zip FreeBSD-src-61490236bcee0615867517e76eb92c1b20075f82.tar.gz |
Reviewed by: Luoqi Chen, Jordan Hubbard
Submitted by: "Richard Seaman, Jr." <lists@tar.com>
Obtained from: linux :-)
Code to allow Linux Threads to run under FreeBSD.
By default not enabled
This code is dependent on the conditional
COMPAT_LINUX_THREADS (suggested by Garret)
This is not yet a 'real' option but will be within some number of hours.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/i386/sys/sigsuspend.S | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/libc/i386/sys/sigsuspend.S b/lib/libc/i386/sys/sigsuspend.S index 660eabf..f85b2e1 100644 --- a/lib/libc/i386/sys/sigsuspend.S +++ b/lib/libc/i386/sys/sigsuspend.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: sigsuspend.S,v 1.6 1997/02/22 14:59:40 peter Exp $ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$Id$" + .asciz "$Id: sigsuspend.S,v 1.6 1997/02/22 14:59:40 peter Exp $" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" @@ -50,7 +50,9 @@ err: #ifdef _THREAD_SAFE ENTRY(_thread_sys_sigsuspend) #else -ENTRY(sigsuspend) +ENTRY(_sigsuspend) + .weak CNAME(sigsuspend) ; + .set CNAME(sigsuspend), CNAME(_sigsuspend) ; #endif movl 4(%esp),%eax # fetch mask arg movl (%eax),%eax # indirect to mask arg |