Commit 375d1239 by Nicola Pero Committed by Nicola Pero

module-abi-8.h (struct objc_symtab): Updated description of sel_ref_cnt and refs.

2010-12-11  Nicola Pero  <nicola.pero@meta-innovation.com>

	* objc-private/module-abi-8.h (struct objc_symtab): Updated
	description of sel_ref_cnt and refs.
	* objc/deprecated/struct_objc_symtab.h (objc_symtab): Same change.

From-SVN: r167710
parent 10ae7517
2010-12-11 Nicola Pero <nicola.pero@meta-innovation.com>
* objc-private/module-abi-8.h (struct objc_symtab): Updated
description of sel_ref_cnt and refs.
* objc/deprecated/struct_objc_symtab.h (objc_symtab): Same change.
2010-12-06 Dave Korn <dave.korn.cygwin@gmail.com> 2010-12-06 Dave Korn <dave.korn.cygwin@gmail.com>
PR target/40125 PR target/40125
......
...@@ -47,8 +47,11 @@ struct objc_static_instances ...@@ -47,8 +47,11 @@ struct objc_static_instances
categories defined in the module. */ categories defined in the module. */
struct objc_symtab struct objc_symtab
{ {
unsigned long sel_ref_cnt; /* Unknown. */ unsigned long sel_ref_cnt; /* Unused (always set to 0). */
SEL refs; /* Unknown. */ SEL refs; /* The table of selectors referenced in
this module. This is terminated by a
selector with NULL sel_id and NULL
sel_types. */
unsigned short cls_def_cnt; /* Number of classes compiled (defined) unsigned short cls_def_cnt; /* Number of classes compiled (defined)
in the module. */ in the module. */
unsigned short cat_def_cnt; /* Number of categories compiled unsigned short cat_def_cnt; /* Number of categories compiled
......
...@@ -5,8 +5,11 @@ ...@@ -5,8 +5,11 @@
A Symtab contains a variable length array of pointers to classes and A Symtab contains a variable length array of pointers to classes and
categories defined in the module. */ categories defined in the module. */
typedef struct objc_symtab { typedef struct objc_symtab {
unsigned long sel_ref_cnt; /* Unknown. */ unsigned long sel_ref_cnt; /* Unused (always set to 0). */
SEL refs; /* Unknown. */ SEL refs; /* The table of selectors referenced in
this module. This is terminated by a
selector with NULL sel_id and NULL
sel_types. */
unsigned short cls_def_cnt; /* Number of classes compiled unsigned short cls_def_cnt; /* Number of classes compiled
(defined) in the module. */ (defined) in the module. */
unsigned short cat_def_cnt; /* Number of categories unsigned short cat_def_cnt; /* Number of categories
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment