根据5.2中的讲解,当监控high priority queue的PDSP channel设定好后,那么与之对应的event就知道了(PDSP channel与event一一对应),注意5.x讲的是中断的配置,并不是exception的配置,4.x讲的是exception。
中断event与ISR配置伪代码如下,目的是使event与ISR建立联系:
/*Configure ev...
分类:
其他好文 时间:
2014-05-15 23:41:39
阅读次数:
452
今天本来测试一个Demo,在vs里运行没有问题,一点发布,竟然报异常Exception in
executing publishing : (Exception from HRESULT: 0x80004002
(E_NOINTERFACE))百思不得其解,查了相关资料,竟然是解决方案文件夹下生成的...
分类:
其他好文 时间:
2014-05-15 13:55:28
阅读次数:
258
checked exception 有时会成为代理的障碍(又多了一条不用checked exception的理由)。
某lib的异常类型设计为单根的异常类型树时,根类型选择 extends RuntimeException,而不是 Exception,但是fatal和non fatal最好还是清楚的分开成两枝。
lib最好特别为其实现的实例化过程设计专门的异常类型。...
分类:
其他好文 时间:
2014-05-15 13:28:22
阅读次数:
181
// 创建保存照片文件夹
private void CreateFileJPG() {
File file = new File("/sdcard/image");
if (!file.exists()) {
try {
file.mkdirs();
} catch (Exception e) {
// TODO: handle exceptio...
分类:
移动开发 时间:
2014-05-15 06:39:58
阅读次数:
434
Shark0.9.0错误如下:
Starting the Shark Command Line Client
Exception in thread "main" java.lang.UnsupportedClassVersionError: org/apache/hadoop/hive/cli/CliDriver : Unsupported major.minor version 51.0...
分类:
其他好文 时间:
2014-05-15 05:42:17
阅读次数:
375
这是我今天遇到的一个最棘手的问题,耗费了一下午的时间终于解决了。不知道为什么,今天做这个web项目时突然遇到下面这样一个错误:typeExceptionreport
message
descriptionTheserverencounteredaninternalerror()thatpreventeditfromfulfillingthisrequest.
exception
org.ap..
分类:
其他好文 时间:
2014-05-15 00:29:29
阅读次数:
328
对于TI C66x DSP的每个CPU有INT4~15共12个中断输入。对于中断,event combiner将event 4~127分为4个组(event 0~3为INTC内部使用,如图示为event combiner的四个输出)。类似于4.x中的exception,中断也有同样功能的event flag,event mask,masked event flag寄存器。...
分类:
其他好文 时间:
2014-05-14 23:54:21
阅读次数:
645
记录整合中缺少 JAR 文件引起的异常版本 Spring 3+ Hibernate 4+
JPA 1、Exception in thread "main"
org.springframework.beans.factory.parsing.BeanDefinitionParsingExceptio....
分类:
编程语言 时间:
2014-05-14 23:25:27
阅读次数:
488
05-14 22:16:42.808: E/AndroidRuntime(22906): FATAL
EXCEPTION: main05-14 22:16:42.808: E/AndroidRuntime(22906):
java.lang.RuntimeException: Unable to s...
分类:
其他好文 时间:
2014-05-14 23:16:55
阅读次数:
405
一、使用事务
1、spring配置文件中开启事务注解机制
2、在方法上使用@Transactional注解来使用事务
二、使用事务注意事项
1、只能在一个类中调用另一个类中的事务方法。
2、事务默认对RunTimeException进行回滚,用rollbackfor=Exception.class可指定对所有异常回滚。
3、...
分类:
编程语言 时间:
2014-05-14 19:19:16
阅读次数:
379