码迷,mamicode.com
首页 >  
搜索关键字:routine    ( 212个结果
muduo 库解析之十一:Thread
线程 创建线程 #include <pthread.h> int pthread_create(pthread_t *restrict thread,const pthread_attr_t *restrict attr,void *(*start_routine)(void*), void *re ...
分类:其他好文   时间:2021-04-26 13:53:31    阅读次数:0
Java 线程实现原理
Linux 操作系统中创建线程的方式 int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine) (void *), void *arg); 参数名 参数定义 参数解释 pthrea ...
分类:编程语言   时间:2021-04-08 13:36:39    阅读次数:0
内核中利用系统事件通知监控和拦截进程,线程和模块
监控进程 NTSTATUS PsSetCreateProcessNotifyRoutineEx( PCREATE_PROCESS_NOTIFY_ROUTINE_EX NotifyRoutine, BOOLEAN Remove ); 通过PsSetCreateProcessNotifyRoutineE ...
分类:编程语言   时间:2021-04-06 14:04:34    阅读次数:0
类中pthread_create()的线程入口函数
在类成员函数中如何调用pthread_create()呢? #incldue <pthread.h> int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine)(void *), v ...
分类:编程语言   时间:2021-03-16 11:47:13    阅读次数:0
Golang学习(用代码来学习) - 第四篇
/** 一个用来进行go routine的函数 */ func print_something(msg string){ for i:= 0;i < 5;i++{ time.Sleep(1 * time.Second) fmt.Println(msg) } } /** 异步相加,并将结果放在通道中 ...
分类:其他好文   时间:2020-06-20 13:43:41    阅读次数:52
What Are You Weighting For?
A basic strength routine can change your life Strength training isn’t just about getting six-pack abs and big biceps. Along with stretching and elevat ...
分类:其他好文   时间:2020-06-06 21:47:07    阅读次数:87
MySQL 1303错误的解决方法(navicat)
今天在用navicat创建MYSQL存储过程的时候,总是出现错误,错误信息如下. 1303-Can 't create a PROCEDURE from within another stored routine.这个错误信息,比较难以理解,于是仔细检查存储过程内容,也没什么问题呀,代码如下: CR ...
分类:数据库   时间:2020-05-17 16:00:36    阅读次数:88
Go routine协程
Go 协程,可以理解成轻量级的协程 Go主线程,一个主线程可以起多个协程 Go协程的特点: 有独立的栈空间 共享程序堆空间 调度由用户控制 package main import( "fmt" "time" ) func SayHello(){ for i:=0;i< 5;i++{ fmt.Prin ...
分类:其他好文   时间:2020-04-05 16:58:25    阅读次数:84
mybatis使用存储过程
mybatis使用存储过程 创建存储过程 mysql CREATE DEFINER= @`localhost select_user_count`(out userCount INTEGER,OUT postCount INTEGER) BEGIN Routine body goes here... ...
分类:其他好文   时间:2020-03-12 18:33:29    阅读次数:45
what is conversion exit defined in ABAP domain
我们之前用了这个data element。 UI framework的getter 会自动检测data type的domain上是否维护conversion exit,如果有,就自动调用,我们没有写任何代码。 还是这个routine只控制ui field? Conversion exit 有 in ...
分类:其他好文   时间:2020-03-03 10:49:55    阅读次数:54
212条   1 2 3 4 ... 22 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!