mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-30 12:31:53 +08:00
da1ea0f056
* sysdeps/unix/sysv/linux/hppa/xstat.c: New file. * sysdeps/unix/sysv/linux/hppa/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/hppa/fxstat.c: Likewise. * sysdeps/unix/sysv/linux/hppa/fxstatat.c: Likewise. 2006-07-13 Carlos O'Donell <carlos@systemhalted.org> * sysdeps/hppa/nptl/Makefile: New file * sysdeps/hppa/nptl/jmpbuf-unwind.h: Likewise * sysdeps/hppa/nptl/pthread_spin_lock.c: Likewise * sysdeps/hppa/nptl/pthread_spin_trylock.c: Likewise * sysdeps/hppa/nptl/pthread_spin_unlock.c: Likewise * sysdeps/hppa/nptl/pthreaddef.h: Likewise * sysdeps/hppa/nptl/tcb-offsets.sym: Likewise * sysdeps/hppa/nptl/tls.h: Likewise * sysdeps/unix/sysv/linux/hppa/nptl/bits: Likewise * sysdeps/unix/sysv/linux/hppa/nptl/createthread.c: Likewise * sysdeps/unix/sysv/linux/hppa/nptl/fork.c: Likewise * sysdeps/unix/sysv/linux/hppa/nptl/internaltypes.h: Likewise * sysdeps/unix/sysv/linux/hppa/nptl/libc-lowlevellock.c: Likewise * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.c: Likewise * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise * sysdeps/unix/sysv/linux/hppa/nptl/pt-initfini.c: Likewise * sysdeps/unix/sysv/linux/hppa/nptl/pt-vfork.S: Likewise * sysdeps/unix/sysv/linux/hppa/nptl/pthread_once.c: Likewise * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise * sysdeps/unix/sysv/linux/hppa/nptl/unwind-forcedunwind.c: Likewise * sysdeps/unix/sysv/linux/hppa/nptl/unwind-resume.c: Likewise
91 lines
2.7 KiB
ArmAsm
91 lines
2.7 KiB
ArmAsm
/* Copyright (C) 2005 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
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, write to the Free
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
02111-1307 USA. */
|
|
|
|
#include <sysdep.h>
|
|
#define _ERRNO_H 1
|
|
#include <bits/errno.h>
|
|
#include <tcb-offsets.h>
|
|
|
|
/* Clone the calling process, but without copying the whole address space.
|
|
The calling process is suspended until the new process exits or is
|
|
replaced by a call to `execve'. Return -1 for errors, 0 to the new process,
|
|
and the process ID of the new process to the old process. */
|
|
|
|
/* Load the thread register.
|
|
Load the saved PID value.
|
|
Negate the value.
|
|
Store the temporary PID. */
|
|
#define SAVE_PID \
|
|
mfctl %cr27, %r26 ASM_LINE_SEP \
|
|
ldw PID_THREAD_OFFSET(%r26),%r1 ASM_LINE_SEP \
|
|
sub %r0,%r1,%r1 ASM_LINE_SEP \
|
|
stw %r1,PID_THREAD_OFFSET(%r26) ASM_LINE_SEP
|
|
/* If we are the parent...
|
|
Get the thread pointer.
|
|
Load the saved PID.
|
|
Negate the value (got back original)
|
|
Restore the PID. */
|
|
#define RESTORE_PID \
|
|
cmpb,=,n %r0,%ret0,.Lthread_start ASM_LINE_SEP \
|
|
mfctl %cr27, %r26 ASM_LINE_SEP \
|
|
ldw PID_THREAD_OFFSET(%r26),%r1 ASM_LINE_SEP \
|
|
sub %r0,%r1,%r1 ASM_LINE_SEP \
|
|
stw %r1,PID_THREAD_OFFSET(%r26) ASM_LINE_SEP \
|
|
.Lthread_start: ASM_LINE_SEP
|
|
|
|
/* r26, r25, r24, r23 are free since vfork has no arguments */
|
|
ENTRY(__vfork)
|
|
|
|
/* Save the PIC register. */
|
|
#ifdef PIC
|
|
copy %r19, %r25 /* parent */
|
|
#endif
|
|
|
|
/* Save the process PID */
|
|
SAVE_PID
|
|
|
|
/* Syscall saves and restores all register states */
|
|
ble 0x100(%sr2,%r0)
|
|
ldi __NR_vfork,%r20
|
|
|
|
/* Conditionally restore the PID */
|
|
RESTORE_PID
|
|
|
|
/* Check for error */
|
|
ldi -4096,%r1
|
|
comclr,>>= %r1,%ret0,%r0 /* Note: unsigned compare. */
|
|
b,n .Lerror
|
|
|
|
/* Return, no need to restore the PIC register. */
|
|
bv,n %r0(%rp)
|
|
|
|
.Lerror:
|
|
SYSCALL_ERROR_HANDLER
|
|
/* Restore the PIC register (in delay slot) on error */
|
|
#ifdef PIC
|
|
copy %r25, %r19 /* parent */
|
|
#else
|
|
nop
|
|
#endif
|
|
sub %r0,%ret0,%arg0
|
|
/* Return error */
|
|
PSEUDO_END (__vfork)
|
|
libc_hidden_def (__vfork)
|
|
weak_alias (__vfork, vfork)
|
|
|