mirror of git://sourceware.org/git/glibc.git
Use ENTRY/END macros in old-ABI ARM sysdep-cancel.h.
This commit is contained in:
parent
04d4502636
commit
8117345d22
|
|
@ -1,3 +1,8 @@
|
||||||
|
2012-01-03 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h (PSEUDO): Change
|
||||||
|
.type/.globl/label to ENTRY(). Change .size to END().
|
||||||
|
|
||||||
2011-12-20 Peter Green <plugwash@p10link.net>
|
2011-12-20 Peter Green <plugwash@p10link.net>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/arm/sys/ucontext.h: Don't include
|
* sysdeps/unix/sysv/linux/arm/sys/ucontext.h: Don't include
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
/* Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
|
/* Copyright (C) 2003, 2004, 2005, 2007, 2008, 2012
|
||||||
|
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
|
||||||
|
|
@ -28,12 +29,10 @@
|
||||||
# define PSEUDO(name, syscall_name, args) \
|
# define PSEUDO(name, syscall_name, args) \
|
||||||
.section ".text"; \
|
.section ".text"; \
|
||||||
PSEUDO_PROLOGUE; \
|
PSEUDO_PROLOGUE; \
|
||||||
.type __##syscall_name##_nocancel,%function; \
|
ENTRY (__##syscall_name##_nocancel); \
|
||||||
.globl __##syscall_name##_nocancel; \
|
|
||||||
__##syscall_name##_nocancel: \
|
|
||||||
DO_CALL (syscall_name, args); \
|
DO_CALL (syscall_name, args); \
|
||||||
PSEUDO_RET; \
|
PSEUDO_RET; \
|
||||||
.size __##syscall_name##_nocancel,.-__##syscall_name##_nocancel; \
|
END (__##syscall_name##_nocancel); \
|
||||||
ENTRY (name); \
|
ENTRY (name); \
|
||||||
SINGLE_THREAD_P; \
|
SINGLE_THREAD_P; \
|
||||||
DOARGS_##args; \
|
DOARGS_##args; \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue