diff options
author | Nicola Pero <nicola.pero@meta-innovation.com> | 2010-10-10 11:18:57 +0000 |
---|---|---|
committer | Nicola Pero <nicola@gcc.gnu.org> | 2010-10-10 11:18:57 +0000 |
commit | 2461ab4bb799e914f519d800592e49624b01f822 (patch) | |
tree | 50f7678e246b076ee7bac19c6059eedeb35e3e3d /libobjc/objc/objc-exception.h | |
parent | 32af57e2269904ec2a56a9918f8a054e60aa5ef4 (diff) | |
download | gcc-2461ab4bb799e914f519d800592e49624b01f822.zip gcc-2461ab4bb799e914f519d800592e49624b01f822.tar.gz gcc-2461ab4bb799e914f519d800592e49624b01f822.tar.bz2 |
In libobjc/: 2010-10-10 Nicola Pero <nicola.pero@meta-innovation.com>
In libobjc/:
2010-10-10 Nicola Pero <nicola.pero@meta-innovation.com>
* Makefile.in (OBJC_DEPRECATED_H): Added struct_objc_category.h,
struct_objc_ivar.h, struct_objc_ivar_list.h, struct_objc_method.h,
struct_objc_method_list.h, struct_objc_module.h,
struct_objc_protocol_list.h, struct_objc_symtab.h.
* objc/deprecated/struct_objc_category.h: New.
* objc/deprecated/struct_objc_ivar.h: New.
* objc/deprecated/struct_objc_ivar_list.h: New.
* objc/deprecated/struct_objc_method.h: New.
* objc/deprecated/struct_objc_method_list.h: New.
* objc/deprecated/struct_objc_module.h: New.
* objc/deprecated/struct_objc_protocol_list.h: New.
* objc/deprecated/struct_objc_symtab.h: New.
* objc/deprecated/struct_objc_static_instances.h: New.
* objc/objc-api.h: Definitions of deprecated structures moved into
the above header fragment files in objc/deprecated/. Include the
files instead of definition the structures here. Updated
comments.
* objc/runtime.h: Updated comments. Do not include objc-api.h.
(objc_set_enumeration_mutation_handler): Renamed to
objc_setEnumerationMutationHandler.
* objc-foreach.c (objc_set_enumeration_mutation_handler): Renamed
to objc_setEnumerationMutationHandler.
* objc/objc-exception.h (objc_set_exception_matcher): Renamed to
objc_setExceptionMatcher.
(objc_set_uncaught_exception_handler): Renamed to
objc_setUncaughtExceptionHandler.
* exception.c: Same changes.
From-SVN: r165249
Diffstat (limited to 'libobjc/objc/objc-exception.h')
-rw-r--r-- | libobjc/objc/objc-exception.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libobjc/objc/objc-exception.h b/libobjc/objc/objc-exception.h index 2fb9ba6..d584014 100644 --- a/libobjc/objc/objc-exception.h +++ b/libobjc/objc/objc-exception.h @@ -89,7 +89,7 @@ typedef int (*objc_exception_matcher)(Class catch_class, id exception); multi-threaded environment because other threads may be trying to invoke the exception matcher while you change it! */ objc_exception_matcher -objc_set_exception_matcher (objc_exception_matcher new_matcher); +objc_setExceptionMatcher (objc_exception_matcher new_matcher); /* An 'objc_uncaught_exception_handler' function is a function that @@ -103,12 +103,7 @@ typedef void (*objc_uncaught_exception_handler)(id exception); it. */ objc_uncaught_exception_handler -objc_set_uncaught_exception_handler (objc_uncaught_exception_handler new_handler); - - -/* For compatibility with the Apple/NeXT runtime. */ -#define objc_setExceptionMatcher objc_set_exception_matcher -#define objc_setUncaughtExceptionHandler objc_set_uncaught_exception_handler +objc_setUncaughtExceptionHandler (objc_uncaught_exception_handler new_handler); #ifdef __cplusplus } |