aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/mach/hurd
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-09-29 21:57:16 +0000
committerUlrich Drepper <drepper@redhat.com>2003-09-29 21:57:16 +0000
commita7c5324235173ba00a3b4bb5eca947616beb99c9 (patch)
tree495c15f46cdc5d31137b6f8ca165e77bbbfe5c82 /sysdeps/mach/hurd
parentb1c74afa76019a45c7de3a9eab3144bc0d1fce58 (diff)
downloadglibc-a7c5324235173ba00a3b4bb5eca947616beb99c9.tar
glibc-a7c5324235173ba00a3b4bb5eca947616beb99c9.tar.gz
glibc-a7c5324235173ba00a3b4bb5eca947616beb99c9.tar.bz2
glibc-a7c5324235173ba00a3b4bb5eca947616beb99c9.zip
Update.
2003-09-28 Alfred M. Szmidt <ams@kemisten.nu> * sysdeps/mach/hurd/bits/libc-lock.h (__libc_cleanup_pop): Redefine and use __libc_cleanup_region_end instead. 2003-09-29 Thorsten Kukuk <kukuk@suse.de> * sysdeps/unix/sysv/linux/sys/sysmacros.h: Use __inline and fix prototypes for picky C++ compilers.
Diffstat (limited to 'sysdeps/mach/hurd')
-rw-r--r--sysdeps/mach/hurd/bits/libc-lock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/bits/libc-lock.h b/sysdeps/mach/hurd/bits/libc-lock.h
index 5e3388e795..0fa90bcc3e 100644
--- a/sysdeps/mach/hurd/bits/libc-lock.h
+++ b/sysdeps/mach/hurd/bits/libc-lock.h
@@ -1,5 +1,5 @@
/* libc-internal interface for mutex locks. Hurd version using Mach cthreads.
- Copyright (C) 1996,97,98,2000,01, 2002 Free Software Foundation, Inc.
+ Copyright (C) 1996,97,98,2000,01, 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
@@ -160,7 +160,7 @@ typedef struct __libc_lock_recursive_opaque__ __libc_lock_recursive_t;
(*__save_FCT)(__save_ARG); \
#define __libc_cleanup_push(fct, arg) __libc_cleanup_region_start (1, fct, arg)
-#define __libc_cleanup_pop(execute) __libc_cleanup_end (execute)
+#define __libc_cleanup_pop(execute) __libc_cleanup_region_end (execute)
#if (_CTHREADS_ - 0)