From"Jonathan Hsieh (JIRA)" Subject[jira] [Updated] (HBASE-10123) Change default ports; move them out of linux ephemeral port rangeDateFri, 17 Jan 201...
分类:
其他好文 时间:
2015-04-24 18:13:09
阅读次数:
290
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
Description
You are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is composed of unit cubes which may or may not be filled with rock. It takes one minute to move one ...
分类:
其他好文 时间:
2015-04-24 09:10:02
阅读次数:
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
//判断是否手机端varisMobile=false;try{//手机端document.createEvent("TouchEvent");isMobile=true;}catch(e){//pc}//手势事件varstartX=0,endX=0,move_left=null;//按下时触发$(‘元素‘).on(‘touchstart‘,function(e){e.preventDefault()vartouch=event.touches[0];startX=to..
分类:
移动开发 时间:
2015-04-23 13:52:09
阅读次数:
231
程序如下:void move(char x,char y){ printf("%c-->%c\n",x,y);}void hanoi(int n,char one,char two,char three){/*将n个盘从one座借助two座,移到three座*/ if(n==1) move(one,...
分类:
其他好文 时间:
2015-04-23 09:32:03
阅读次数:
194
驱动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
1. error: unknown register name 'q0' in asm : "memory", "q0", "q1", "q2", "q3", "q8", "q9", "q10", "q11", "q12", "q13", "q14" 解决方法:把#if defined(__...
分类:
其他好文 时间:
2015-04-21 20:11:59
阅读次数:
116
WWWNEWSAD 为表名 USERS 为原表空间 CONTENT 为lob类型的字段 DATA_INDEX_WXZJ 指定的表空间ALTER TABLE WWWNEWSAD MOVE TABLESPACE USERS LOB ( CONTENT) STORE AS (TABLESPACE DA.....
分类:
移动开发 时间:
2015-04-21 18:02:14
阅读次数:
195