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/exception.c | |
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/exception.c')
-rw-r--r-- | libobjc/exception.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libobjc/exception.c b/libobjc/exception.c index 0225d67..a221a3e 100644 --- a/libobjc/exception.c +++ b/libobjc/exception.c @@ -69,7 +69,7 @@ static objc_exception_matcher __objc_exception_matcher = is_kind_of_exception_matcher; objc_exception_matcher -objc_set_exception_matcher (objc_exception_matcher new_matcher) +objc_setExceptionMatcher (objc_exception_matcher new_matcher) { objc_exception_matcher old_matcher = __objc_exception_matcher; __objc_exception_matcher = new_matcher; @@ -81,8 +81,8 @@ static objc_uncaught_exception_handler __objc_uncaught_exception_handler = NULL; objc_uncaught_exception_handler -objc_set_uncaught_exception_handler (objc_uncaught_exception_handler - new_handler) +objc_setUncaughtExceptionHandler (objc_uncaught_exception_handler + new_handler) { objc_uncaught_exception_handler old_handler = __objc_uncaught_exception_handler; |