1、系统环境:
OEL6.5企业版
Oracle11.2.0.2 RAC + ASM
2、报错信息:
$ crs_stat -t
CRS-0184: Cannot communicate with the CRS daemon. ...
分类:
其他好文 时间:
2015-04-27 13:25:01
阅读次数:
438
1、系统环境:
Redhat 6.4 企业版
Oracle11.2.0.2 RAC+ASM
2、报错信息:/oracle/app/11.2.0/grid/bin/clscfg.bin:
error while loading shared libraries: libcap.so.1: cannot open shared object f...
分类:
数据库 时间:
2015-04-27 11:22:12
阅读次数:
185
首先是导包其中最后一个asm包,可谓是让我费劲又伤神啊。具体情况就不说了。其次是配置hibernate.cfg.xml文件我用的是微软SQL Server com.microsoft.sqlserver.jdbc.SQLServerDriver j...
分类:
Web程序 时间:
2015-04-26 16:26:50
阅读次数:
211
一.fork的嵌入式汇编执行#include #include int main(){ pid_t pid; asm volatile( "mov $0,%%ebx\n\t" "mov $0x2,%eax\n\t" "int 0x80\n\t" ...
分类:
系统相关 时间:
2015-04-26 13:34:05
阅读次数:
173
1.迁移数据文件到ASM; 2.迁移日志文件到ASM; 3.迁移控制文件到ASM;
分类:
数据库 时间:
2015-04-25 14:55:36
阅读次数:
188
【Title】Pico CTF 2014 Write-up snippet 【Description】 We found this program snippet.txt, but we're having some trouble figuring it out. What's the value...
分类:
其他好文 时间:
2015-04-25 12:08:43
阅读次数:
305
1.核心理论
信号类型:linux系统支持的所有信号均定义在/usr/include/asm/signal.h中,其中常见的信号有:
SIGKILL: 杀死进程
SIGSTOP: 暂停进程
SIGCHLD:子进程停止或结束时用来通知父进程
2.函数学习
发送信号
函数名:kill
函数原型:int kill(pid_t pid, int sig);
函数功能:向进程发送信号
...
分类:
其他好文 时间:
2015-04-24 09:13:48
阅读次数:
152
1.调用TI的官方延时函数DELAY_US()的步骤,在DSP2803x_Examples.h头文件中。
使用TI定义的DELAY_US()函数步骤:
1). 工程添加 DSP2803x_usDelay.asm文件
2).声明extern Uint16 RamfuncsLoadSize,(RamfuncsRunStart
RamfuncsLoadStart在DSP2803x_...
分类:
其他好文 时间:
2015-04-23 17:29:27
阅读次数:
510
驱动LED灯
首先加入头文件#include
#include
#include
#include
#include
#include
#include
#include <asm/io....
分类:
其他好文 时间:
2015-04-22 09:40:18
阅读次数:
259
在OS_CPU_A.ASM中,定义了开、关中断的方法,在uC/OS-II系统中有三种方法可以实现中断开关,而ARM只适用于模式三,即使用一个局部变量,在中断进入之间保存CPU状态,退出时候再恢复状态。OSStart()函数调用OSStartHighRdy()来使就绪态任务中优先级最高的任务开始运行,...
分类:
其他好文 时间:
2015-04-22 09:29:23
阅读次数:
229