diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-08-01 18:13:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-08-01 18:13:17 +0000 |
commit | 20eb79709e3ecf0038a1e564adc7693b6b4f0beb (patch) | |
tree | 52276e462bca9ef0bf7ef18eafc2dd12f8c8ab92 /bits | |
parent | b792218d494b085a76f200b1aae82d6f54c84efc (diff) | |
download | glibc-20eb79709e3ecf0038a1e564adc7693b6b4f0beb.tar glibc-20eb79709e3ecf0038a1e564adc7693b6b4f0beb.tar.gz glibc-20eb79709e3ecf0038a1e564adc7693b6b4f0beb.tar.bz2 glibc-20eb79709e3ecf0038a1e564adc7693b6b4f0beb.zip |
Update.
2003-08-01 Ulrich Drepper <drepper@redhat.com>
* sysdeps/generic/bits/libc-lock.h
(__libc_cleanup_push,__libc_cleanup_pop): Define even here.
Diffstat (limited to 'bits')
-rw-r--r-- | bits/libc-lock.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bits/libc-lock.h b/bits/libc-lock.h index 9a99d51bfd..d87bd9b03a 100644 --- a/bits/libc-lock.h +++ b/bits/libc-lock.h @@ -117,6 +117,8 @@ if ((DOIT) && __save_FCT != 0) \ (*__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) /* We need portable names for some of the functions. */ #define __libc_mutex_unlock |