diff options
author | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-11 14:03:38 +0000 |
---|---|---|
committer | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-11 14:03:38 +0000 |
commit | 609b9937816df81c4bf275b5d470fa1bc7fb75e5 (patch) | |
tree | bd5684937f3dfdb210f846cd8072cb242d790fd4 /libobjc/objc | |
parent | f14b907e3fc150c38c5a5fd4099ef9c04b0afb2e (diff) | |
download | ppe42-gcc-609b9937816df81c4bf275b5d470fa1bc7fb75e5.tar.gz ppe42-gcc-609b9937816df81c4bf275b5d470fa1bc7fb75e5.zip |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167710 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc/objc')
-rw-r--r-- | libobjc/objc/deprecated/struct_objc_symtab.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libobjc/objc/deprecated/struct_objc_symtab.h b/libobjc/objc/deprecated/struct_objc_symtab.h index 8e14d63ee34..75bb27f1b55 100644 --- a/libobjc/objc/deprecated/struct_objc_symtab.h +++ b/libobjc/objc/deprecated/struct_objc_symtab.h @@ -5,8 +5,11 @@ A Symtab contains a variable length array of pointers to classes and categories defined in the module. */ typedef struct objc_symtab { - unsigned long sel_ref_cnt; /* Unknown. */ - SEL refs; /* Unknown. */ + unsigned long sel_ref_cnt; /* Unused (always set to 0). */ + 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) in the module. */ unsigned short cat_def_cnt; /* Number of categories |