This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

patch: libobjc.def missing some useful symbols


Since we are talking of building libobjc as a DLL on Windows, libobjc.def
is missing some symbols - this patch adds them (this is basically a merge
from gnustep's own libobjc branch, where libobjc.def is/was used
regularly, and these new symbols were added to libobjc.def).

Is CVS HEAD open again for such commits ?

If so, Stan, is it Ok to commit it ?


Tue Jan  7 12:02:06 2003  Nicola Pero  <n.pero@mi.flashnet.it> 

	* libobjc.def (__objc_runtime_mutex, __objc_is_multi_threaded,
	__objc_runtime_threads_alive, objc_set_thread_callback,
	objc_condition_allocate, objc_condition_deallocate,
	objc_condition_wait, objc_condition_broadcast,
	objc_condition_signal, objc_set_error_handler): Added.

Index: libobjc.def
===================================================================
RCS file: /cvs/gcc/gcc/libobjc/libobjc.def,v
retrieving revision 1.3
diff -u -r1.3 libobjc.def
--- libobjc.def	15 Mar 2001 02:18:09 -0000	1.3
+++ libobjc.def	12 Sep 2002 11:06:58 -0000
@@ -60,6 +60,15 @@
 __objc_init_selector_tables
 __objc_register_selectors_from_class
 __sel_register_typed_name
+__objc_runtime_mutex
+__objc_is_multi_threaded
+__objc_runtime_threads_alive
+objc_set_thread_callback
+objc_condition_allocate
+objc_condition_deallocate
+objc_condition_wait
+objc_condition_broadcast
+objc_condition_signal
 sel_get_any_typed_uid
 sel_get_any_uid
 sel_get_name
@@ -161,3 +170,4 @@
 hash_next
 hash_remove
 hash_value_for_key
+objc_set_error_handler





Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]