- Timestamp:
- Jan 11, 2004, 1:03:49 AM (22 years ago)
- Location:
- trunk/src/emx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/a_out.h
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r940 r941 24 24 M_SPARC = 3, 25 25 /* skip a bunch so we don't run into any of sun's numbers */ 26 M_386 = 100 ,26 M_386 = 100 27 27 }; 28 28 #define N_MAGIC(exec) ((exec).a_info & 0xffff) … … 121 121 whose name is the same as the name of the set. 122 122 This symbol acts like a N_DATA global symbol 123 in that it can satisfy undefined external references. */ 123 in that it can satisfy undefined external references. */ 124 124 125 125 /* These appear as input to LD, in a .o file. */ -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/emxomf/weakld.h
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r940 r941 44 44 WLDC_CASE_INSENSITIVE = 4, 45 45 /** The linker is link386. */ 46 WLDC_LINKER_LINK386 = 0x1000 ,46 WLDC_LINKER_LINK386 = 0x1000 47 47 }; 48 48 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/ld/symseg.h
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r940 r941 123 123 TYPE_CODE_MEMBER, /* Member type */ 124 124 TYPE_CODE_METHOD, /* Method type */ 125 TYPE_CODE_REF ,/* C++ Reference types */125 TYPE_CODE_REF /* C++ Reference types */ 126 126 }; 127 127 … … 146 146 /* Indicates that this type is a virtual baseclass of another class, 147 147 i.e. that if this class is inherited more than once by another 148 class, only one set of member variables will be included. */ 148 class, only one set of member variables will be included. */ 149 149 #define TYPE_FLAG_VIA_VIRTUAL 2048 150 150 … … 168 168 Zero if no such pointer-to type is known yet. 169 169 The debugger may add the address of such a type 170 if it has to construct one later. */ 170 if it has to construct one later. */ 171 171 struct type *pointer_type; 172 172 /* C++: also need a reference type. */ 173 173 struct type *reference_type; 174 174 struct type **arg_types; 175 175 176 176 /* Type that is a function returning this type. 177 177 Zero if no such function type is known here. … … 289 289 types goes here. 290 290 Unused otherwise. 291 291 292 292 Contrary to all maxims of C style and common sense, the baseclasses 293 293 are indexed from 1 to N_BASECLASSES rather than 0 to N_BASECLASSES-1 … … 393 393 enum namespace 394 394 { 395 UNDEF_NAMESPACE, VAR_NAMESPACE, STRUCT_NAMESPACE, LABEL_NAMESPACE ,395 UNDEF_NAMESPACE, VAR_NAMESPACE, STRUCT_NAMESPACE, LABEL_NAMESPACE 396 396 }; 397 397 … … 464 464 }; 465 465 466 /* 466 /* 467 467 * Vectors of all partial symbols read in from file; actually declared 468 468 * and used in dbxread.c. -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.