diff options
author | Ken Raeburn <raeburn@cygnus> | 1993-08-20 19:10:58 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1993-08-20 19:10:58 +0000 |
commit | 52f94fc4862d4341203e44228a50939fbe4c9ff3 (patch) | |
tree | 27d8db5ba3bb439e35ba713c51c14fb3d407791a /bfd/ctor.c | |
parent | 8af0de913157140a7616054c8b2c6345776330cb (diff) | |
download | gdb-52f94fc4862d4341203e44228a50939fbe4c9ff3.zip gdb-52f94fc4862d4341203e44228a50939fbe4c9ff3.tar.gz gdb-52f94fc4862d4341203e44228a50939fbe4c9ff3.tar.bz2 |
minor doc tweaks
Diffstat (limited to 'bfd/ctor.c')
-rw-r--r-- | bfd/ctor.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -25,11 +25,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ SECTION Constructors - Classes in C++ have 'constructors' and 'destructors'. These + Classes in C++ have `constructors' and `destructors'. These are functions which are called automatically by the language whenever data of a class is created or destroyed. Class data which is static data may also be have a type which requires - 'construction', the contructor must be called before the data + `construction', the contructor must be called before the data can be referenced, so the contructor must be called before the program begins. @@ -43,7 +43,7 @@ SECTION <<__GLOBAL__$I$foo>> might be the label of a contructor for the class @var{foo}. The solution on unfortunate systems (most system V machines) is to perform a partial link on all - the .o files, do an <<nm>> on the result, run <<awk>> or some + the <<.o>> files, do an <<nm>> on the result, run <<awk>> or some such over the result looking for strange <<__GLOBAL__$>> symbols, generate a C program from this, compile it and link with the partially linked input. This process is usually @@ -68,7 +68,7 @@ SECTION information necessary to call the function. o table id - - The type of symbol, ie is it a contructor, a destructor or + The type of symbol, i.e., is it a constructor, a destructor or something else someone dreamed up to make our lives difficult. This module takes this information and then builds extra |