diff options
Diffstat (limited to 'sysdeps/stub/libc-lock.h')
-rw-r--r-- | sysdeps/stub/libc-lock.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sysdeps/stub/libc-lock.h b/sysdeps/stub/libc-lock.h index a8608df791..ca2d77c220 100644 --- a/sysdeps/stub/libc-lock.h +++ b/sysdeps/stub/libc-lock.h @@ -48,5 +48,11 @@ Cambridge, MA 02139, USA. */ /* Unlock the named lock variable. */ #define __libc_lock_unlock(NAME) +/* Start critical region with cleanup. */ +#define __libc_cleanup_region_start(FCT, ARG) + +/* End critical region with cleanup. */ +#define __libc_cleanup_region_end(DOIT) + #endif /* libc-lock.h */ |