GDBArch_unknown.st
changeset 132 70c17add3b24
child 259 651864c2aa29
equal deleted inserted replaced
131:21d97c0ee600 132:70c17add3b24
       
     1 "
       
     2 jv:libgdbs - GNU Debugger Interface Library
       
     3 Copyright (C) 2015-now Jan Vrany
       
     4 
       
     5 This library is free software; you can redistribute it and/or
       
     6 modify it under the terms of the GNU Lesser General Public
       
     7 License as published by the Free Software Foundation; either
       
     8 version 2.1 of the License. 
       
     9 
       
    10 This library is distributed in the hope that it will be useful,
       
    11 but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    13 Lesser General Public License for more details.
       
    14 
       
    15 You should have received a copy of the GNU Lesser General Public
       
    16 License along with this library; if not, write to the Free Software
       
    17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
       
    18 "
       
    19 "{ Package: 'jv:libgdbs' }"
       
    20 
       
    21 "{ NameSpace: Smalltalk }"
       
    22 
       
    23 GDBArchitecture subclass:#GDBArch_unknown
       
    24 	instanceVariableNames:'name'
       
    25 	classVariableNames:''
       
    26 	poolDictionaries:''
       
    27 	category:'GDB-Core'
       
    28 !
       
    29 
       
    30 !GDBArch_unknown class methodsFor:'documentation'!
       
    31 
       
    32 copyright
       
    33 "
       
    34 jv:libgdbs - GNU Debugger Interface Library
       
    35 Copyright (C) 2015-now Jan Vrany
       
    36 
       
    37 This library is free software; you can redistribute it and/or
       
    38 modify it under the terms of the GNU Lesser General Public
       
    39 License as published by the Free Software Foundation; either
       
    40 version 2.1 of the License. 
       
    41 
       
    42 This library is distributed in the hope that it will be useful,
       
    43 but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    44 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    45 Lesser General Public License for more details.
       
    46 
       
    47 You should have received a copy of the GNU Lesser General Public
       
    48 License along with this library; if not, write to the Free Software
       
    49 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
       
    50 "
       
    51 ! !
       
    52 
       
    53 !GDBArch_unknown methodsFor:'accessing'!
       
    54 
       
    55 name
       
    56     ^ name
       
    57 
       
    58     "Created: / 16-08-2018 / 09:00:47 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    59 ! !
       
    60 
       
    61 !GDBArch_unknown methodsFor:'initialization'!
       
    62 
       
    63 setName: aString
       
    64     name := aString
       
    65 
       
    66     "Created: / 16-08-2018 / 09:00:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    67 ! !
       
    68 
       
    69 !GDBArch_unknown methodsFor:'queries'!
       
    70 
       
    71 sizeofPointer
       
    72     ^ 8 "/ conservative value
       
    73 
       
    74     "Created: / 16-08-2018 / 09:35:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    75 ! !
       
    76