aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/arm/skyeye_common
diff options
context:
space:
mode:
authorGravatar Lioncash <mathew1800@gmail.com>2015-04-07 08:00:07 -0400
committerGravatar Lioncash <mathew1800@gmail.com>2015-04-07 08:05:41 -0400
commita6c9e453b24ba5372eab56bed1ce9abdad2177a1 (patch)
tree50b40e0cae1b0ccfefd0ea942f4eeb2566388569 /src/core/arm/skyeye_common
parent11bd6024fb2d09b11df3ef12f7188a5b3be5c577 (diff)
dyncom: Remove unnecessary enum and typedef
Also fixes descriptions in the process.
Diffstat (limited to 'src/core/arm/skyeye_common')
-rw-r--r--src/core/arm/skyeye_common/skyeye_defs.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/core/arm/skyeye_common/skyeye_defs.h b/src/core/arm/skyeye_common/skyeye_defs.h
index edf6097e..94b02459 100644
--- a/src/core/arm/skyeye_common/skyeye_defs.h
+++ b/src/core/arm/skyeye_common/skyeye_defs.h
@@ -11,28 +11,3 @@ struct cpu_config_t
u32 cpu_mask; // cpu_val's mask.
u32 cachetype; // CPU cache type
};
-
-enum {
- // No exception
- No_exp = 0,
- // Memory allocation exception
- Malloc_exp,
- // File open exception
- File_open_exp,
- // DLL open exception
- Dll_open_exp,
- // Invalid argument exception
- Invarg_exp,
- // Invalid module exception
- Invmod_exp,
- // wrong format exception for config file parsing
- Conf_format_exp,
- // some reference excess the predefiend range. Such as the index out of array range
- Excess_range_exp,
- // Can not find the desirable result
- Not_found_exp,
- // Unknown exception
- Unknown_exp
-};
-
-typedef u32 addr_t;