bootstrap: 中断 硬件:保存寄存器, 切到ISR(Interrupt Service Routine) ISR汇编:保存需要的寄存器,设置环境 ISR C: 处理中断,从外设读入数据 ISR C: 返回汇编ISR ISR汇编:恢复寄存器,返回中断点。 本质:以IRQ(Interrupt R ...
分类:
其他好文 时间:
2018-03-12 21:07:54
阅读次数:
179
一、环境 1.此随笔内容基于spring boot整合的spring data jpa项目, 2.数据库为mysql 5.7.9版本 二、内容 1. 新建存储过程 pro_query_object BEGIN #Routine body goes here...a_theme_code varcha ...
分类:
编程语言 时间:
2018-02-05 19:57:06
阅读次数:
4360
本文以一个例子的方式介绍channel在同步中的使用。 下面的例子中,主task首先阻塞,直到两个task完成后,再继续执行。 package main import ( "log" "time" ) func main() { ch := make(chan int) go task1(ch) g ...
分类:
其他好文 时间:
2018-02-04 00:26:23
阅读次数:
209
因为golang的map和列表切片都是引用类型,且非线程安全的,所以在多个go routine中进行读写操作的时候,会产生“map read and map write“的panic错误。 某一些类型的对象,会有这种类似的set方法来写数据,或者get方法来返回一个map: 如果会在多个go rou ...
分类:
其他好文 时间:
2017-12-28 19:42:10
阅读次数:
192
创建 例程语法参见https://dev.mysql.com/doc/refman/5.7/en/create-procedure.html 创建procedure 的语法如下 创建一个简单的实例 我是在root@localhost 下面创建的 现在我切换到 hee@localhost 本应该 我执 ...
分类:
数据库 时间:
2017-12-19 00:55:55
阅读次数:
243
BADI:UJD_ROUTINEUJD_ROUTINE在将数据写入数据库之前,Transformation file 和Conversion file是用于帮助处理导入的数据。在BPC 10.1中,Transformation file现在支持使用两个新的参数选项,即START_ROUTINE和EN... ...
分类:
其他好文 时间:
2017-12-07 11:54:42
阅读次数:
378
MySQL中,创建存储过程的基本形式如下: 其中,sp_name参数是存储过程的名称;proc_parameter表示存储过程的参数列表; characteristic参数指定存储过程的特性;routine_body参数是SQL代码的内容,可以用BEGIN…END来标志SQL代码的开始和结束。 pr ...
分类:
数据库 时间:
2017-11-12 21:51:15
阅读次数:
211
https://en.wikipedia.org/wiki/Subroutine In computer programming, a subroutine is a sequence of program instructions that perform a specific task, pac ...
分类:
其他好文 时间:
2017-11-02 16:11:03
阅读次数:
131
RegistryCallback routine 过滤器驱动程序的常规RegistryCallback可以监视,阻止或修改一个注册表操作。 句法 C ++ NTSTATUS CmRegisterCallback( _In_ PEX_CALLBACK_FUNCTION Function, _In_op ...
分类:
其他好文 时间:
2017-10-20 20:13:46
阅读次数:
350
Here ar a part of the code for reference: Please note that the codes should be executed in the timer interrupt routine.changed into seconds by using t ...
分类:
编程语言 时间:
2017-10-10 23:14:26
阅读次数:
394