diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2015-02-09 20:15:52 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2015-02-09 20:15:52 (GMT) | 
| commit | 8d326041a0379b87e54be44506d544367567e89b (patch) | |
| tree | a3c3555c27c30858155fbee4df0ca236f33774f8 /src/format/java | |
| parent | b70f428256963385a140e9eb503624106df5aa9b (diff) | |
Registered all the supported processors in the system code.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@467 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/format/java')
| -rwxr-xr-x | src/format/java/java.c | 29 | 
1 files changed, 3 insertions, 26 deletions
diff --git a/src/format/java/java.c b/src/format/java/java.c index 16c9fb7..e477b82 100755 --- a/src/format/java/java.c +++ b/src/format/java/java.c @@ -46,7 +46,7 @@ static void g_java_format_class_init(GJavaFormatClass *);  static void g_java_format_init(GJavaFormat *);  /* Indique le type d'architecture visée par le format. */ -static FormatTargetMachine g_java_format_get_target_machine(const GJavaFormat *); +static const char *g_java_format_get_target_machine(const GJavaFormat *);  /* Fournit la position correspondant à une adresse virtuelle. */  static bool g_java_format_translate_address_into_offset(const GJavaFormat *, vmpa_t, off_t *); @@ -181,32 +181,9 @@ GBinFormat *g_java_format_new(const bin_t *content, off_t length)  *                                                                             *  ******************************************************************************/ -static FormatTargetMachine g_java_format_get_target_machine(const GJavaFormat *format) +static const char *g_java_format_get_target_machine(const GJavaFormat *format)  { -    FormatTargetMachine result;             /* Identifiant à retourner     */ - -    result = FTM_386; - -    /* -    switch (format->header.e_machine) -    { -        case EM_MIPS: -            result = FTM_MIPS; -            break; - -        case EM_386: -            result = FTM_386; -            break; - -        case EM_NONE: -        default: -            result = FTM_NONE; -            break; - -    } -    */ - -    return result; +    return "jvm";  }  | 
