+2003-06-16 Ulrich Drepper <drepper@redhat.com>
+
+ * sysdeps/unix/sysv/linux/i386/socket.S: Add unwind information.
+
+ * sysdeps/unix/sysv/linux/wait.c (__libc_wait): Fix type of result
+ variable.
+
2003-06-16 Thorsten Kukuk <kukuk@suse.de>
* include/libc-symbols.h: Add static_link_warning macro.
2003-06-12 Ulrich Drepper <drepper@redhat.com>
- * sysdeps/posix/getaddrinfo.c (gaih_inet): Set no_inet6_date alse
+ * sysdeps/posix/getaddrinfo.c (gaih_inet): Set no_inet6_date also
if only PF_INET address is needed.
* nss/getXXbyYY_r.c: Make sure we always return a nonzero value in
-/* Copyright (C) 1995, 1996, 1997, 1998, 2002 Free Software Foundation, Inc.
+/* Copyright (C) 1995,1996,1997,1998,2002,2003 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
#endif
.globl __socket
+ cfi_startproc
ENTRY (__socket)
#if defined NEED_CANCELLATION && defined CENABLE
SINGLE_THREAD_P
/* Save registers. */
movl %ebx, %edx
+ cfi_register (3, 2)
movl $SYS_ify(socketcall), %eax /* System call number in %eax. */
/* Restore registers. */
movl %edx, %ebx
+ cfi_restore (3)
/* %eax is < 0 if there was an error. */
cmpl $-125, %eax
#if defined NEED_CANCELLATION && defined CENABLE
/* We need one more register. */
1: pushl %esi
+ cfi_adjust_cfa_offset(4)
/* Enable asynchronous cancellation. */
CENABLE
movl %eax, %esi
+ cfi_offset(6, -8) /* %esi */
/* Save registers. */
movl %ebx, %edx
+ cfi_register (3, 2)
movl $SYS_ify(socketcall), %eax /* System call number in %eax. */
/* Restore registers. */
movl %edx, %ebx
+ cfi_restore (3)
/* Restore the cancellation. */
xchgl %esi, %eax
/* Restore registers. */
movl %esi, %eax
popl %esi
+ cfi_restore (6)
+ cfi_adjust_cfa_offset(-4)
/* %eax is < 0 if there was an error. */
cmpl $-125, %eax
/* Successful; return the syscall's value. */
ret
#endif
+ cfi_endproc
PSEUDO_END (__socket)
#ifndef NO_WEAK_ALIAS