Ignore:
Timestamp:
02/04/15 12:21:29 (10 years ago)
Author:
adrpo
Message:
  • mdt 0.7.36 + add quard and metarecords as keywords
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/org.modelica.mdt.debug.core/src/org/modelica/mdt/debug/gdb/helper/GDBHelper.java

    r1861 r1868  
    88 * All rights reserved.
    99 *
    10  * THIS PROGRAM IS PROVIDED UNDER THE TERMS OF GPL VERSION 3 
    11  * AND THIS OSMC PUBLIC LICENSE (OSMC-PL). 
    12  * ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS PROGRAM CONSTITUTES RECIPIENT'S 
     10 * THIS PROGRAM IS PROVIDED UNDER THE TERMS OF GPL VERSION 3
     11 * AND THIS OSMC PUBLIC LICENSE (OSMC-PL).
     12 * ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS PROGRAM CONSTITUTES RECIPIENT'S
    1313 * ACCEPTANCE OF THE OSMC PUBLIC LICENSE.
    1414 *
     
    1616 * Consortium (OSMC) Public License (OSMC-PL) are obtained
    1717 * from Linkoping University, either from the above address,
    18  * from the URLs: http://www.ida.liu.se/projects/OpenModelica or 
    19  * http://www.openmodelica.org, and in the OpenModelica distribution. 
     18 * from the URLs: http://www.ida.liu.se/projects/OpenModelica or
     19 * http://www.openmodelica.org, and in the OpenModelica distribution.
    2020 * GNU version 3 is obtained from: http://www.gnu.org/copyleft/gpl.html.
    2121 *
     
    7171    public static String SIGTRAP = "SIGTRAP";
    7272    public static String SIGSEGV = "SIGSEGV";
    73    
     73
    7474    public static Boolean filterCFiles(GDBDebugTarget gdbDebugTarget, MIFrame miFrame) throws CoreException {
    7575        if (miFrame.getFile().isEmpty()) {
     
    8989        }
    9090    }
    91    
     91
    9292    /**
    9393     * @param file
     
    123123        return listType.substring(beginIndex + 1, endIndex);
    124124    }
    125    
     125
    126126    /**
    127127     * Converts OMC hex string to normal java string with utf-8 encoding
     
    131131    public static String omcHexToString(String hexString) {
    132132        String hex = hexString.substring(9);                    // since the hex value starts with _omcQuot_
    133        
     133
    134134        byte[] bytes = new byte[hex.length() / 2];
    135135        for (int i = 0; i < bytes.length; i++) {
Note: See TracChangeset for help on using the changeset viewer.