public inbox for libc-hacker@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Fix SH linuxthreads vfork
@ 2004-04-22  6:39 Kaz Kojima
  2004-04-22  6:51 ` Ulrich Drepper
  0 siblings, 1 reply; 3+ messages in thread
From: Kaz Kojima @ 2004-04-22  6:39 UTC (permalink / raw)
  To: libc-hacker

Hi,

I'd like to forward a mail from SUGIOKA Toshinobu because he has
a trouble with subscribing libc-hacker.
I've confirmed his patch below in my environment.

BTW, does anyone know about any trouble to subscribe libc-hacker?

Regards,
	kaz
--
Hi,

Appended patch fixes segmentation fault in vfork on sh[34]-linux target
which is caused by un-initialized register usage.

ChangeLog:
2004-04-22  SUGIOKA Toshinobu <sugioka@itonet.co.jp>

	* linuxthreads/sysdeps/unix/sysv/linux/sh/vfork.S: Fix wrong function
	pointer reference in PIC case.

Index: linuxthreads/sysdeps/unix/sysv/linux/sh/vfork.S
===================================================================
RCS file: /cvs/glibc/libc/linuxthreads/sysdeps/unix/sysv/linux/sh/vfork.S,v
retrieving revision 1.3
diff -u -r1.3 vfork.S
--- linuxthreads/sysdeps/unix/sysv/linux/sh/vfork.S	11 Feb 2003 06:27:54 -0000	1.3
+++ linuxthreads/sysdeps/unix/sysv/linux/sh/vfork.S	22 Apr 2004 05:10:49 -0000
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -27,8 +27,11 @@
 
 ENTRY (__vfork)
 #ifdef SHARED
+	mov.l	.Lgot, r1
+	mova	.Lgot, r0
+	add	r0, r1
 	mov.l	.Lpthread_func, r0
-	mov.l	@(r0,r12), r0
+	mov.l	@(r0,r1), r0
 #else
 	mov.l	.Lpthread_create, r0
 #endif
@@ -50,6 +53,8 @@
 .L1:	.word	__NR_vfork
 	.align	2
 #ifdef SHARED
+.Lgot:
+	.long	_GLOBAL_OFFSET_TABLE_
 .Lpthread_func:
 	.long	__libc_pthread_functions@GOTOFF
 #else

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Fix SH linuxthreads vfork
  2004-04-22  6:39 [PATCH] Fix SH linuxthreads vfork Kaz Kojima
@ 2004-04-22  6:51 ` Ulrich Drepper
  2004-04-22  7:07   ` Kaz Kojima
  0 siblings, 1 reply; 3+ messages in thread
From: Ulrich Drepper @ 2004-04-22  6:51 UTC (permalink / raw)
  To: Kaz Kojima; +Cc: libc-hacker

Kaz Kojima wrote:

> I've confirmed his patch below in my environment.

Applied.


> BTW, does anyone know about any trouble to subscribe libc-hacker?

libc-hacker is a closed list.  He should subscribe to libc-alpha and
send the patches there.

-- 
➧ Ulrich Drepper ➧ Red Hat, Inc. ➧ 444 Castro St ➧ Mountain View, CA ❖

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Fix SH linuxthreads vfork
  2004-04-22  6:51 ` Ulrich Drepper
@ 2004-04-22  7:07   ` Kaz Kojima
  0 siblings, 0 replies; 3+ messages in thread
From: Kaz Kojima @ 2004-04-22  7:07 UTC (permalink / raw)
  To: drepper; +Cc: libc-hacker

Ulrich Drepper <drepper@redhat.com> wrote:
> Applied.

Thanks!

>> BTW, does anyone know about any trouble to subscribe libc-hacker?
> 
> libc-hacker is a closed list.  He should subscribe to libc-alpha and
> send the patches there.

Ugh, I've missed it.  Sorry.

Regards,
	kaz

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2004-04-22  7:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-04-22  6:39 [PATCH] Fix SH linuxthreads vfork Kaz Kojima
2004-04-22  6:51 ` Ulrich Drepper
2004-04-22  7:07   ` Kaz Kojima

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).