Linux service
niubichen16
这个作者很懒,什么都没留下…
展开
-
inotify+selet实时不断监测多个文件改动
不多说直接上代码 void mian() { int fd[MONITOR_NUM]; int wd[MONITOR_NUM]; int count,i,j; int maxFd=0,readLen; //int len; char buf[EVENT_BUF_LEN] = {0}; //the order of the two arrays is One-to-one corr...原创 2019-02-27 18:26:42 · 509 阅读 · 0 评论 -
linux上一个经典的segmentation fault
废话不多说,请看下面代码: #include<string> #include<stdio.h> #include<unistd.h> #include<string.h> int version=1; int main() { char *testarry[3]={"a",&原创 2019-03-14 17:40:24 · 1518 阅读 · 0 评论 -
linux用户空间,内核空间锁简介,使用
关于内核状态下的锁和用户空间的锁的介绍可以参考以下连接: https://blog.csdn.net/lilichang11106/article/details/84069357 主要内容可以描述如下: 内核锁 用户锁 spinlock_t pthread_ spinlock_t mutex_t pthread_mutex_t、pthread_rwlock_t struc...原创 2019-03-23 16:08:37 · 552 阅读 · 0 评论 -
linux/android thread test
对linux应用空间线程和子线程的理解----基于测试 不多说上代码: #include<string> #include<stdio.h> #include<unistd.h> #include<string.h> void *thread2(void *arg); void *thread1(void *arg) { pthread_t p2...原创 2019-04-08 18:03:22 · 178 阅读 · 0 评论