奋斗的屌丝

导航

2022年2月9日 #

trap '' TERM

摘要: 原文地址:http://blog.sina.com.cn/s/blog_62eb16bb01014dbh.html 一. trap捕捉到信号之后,可以有三种反应方式: (1)执行一段程序来处理这一信号 (2)接受信号的默认操作 (3)忽视这一信号 二. trap对上面三种方式提供了三种基本形式: 第 阅读全文

posted @ 2022-02-09 09:48 奋斗的屌丝 阅读(122) 评论(0) 推荐(0) 编辑

2021年9月22日 #

无线报文分析

摘要: 最近公司任务要做无线定位,要想无线定位就要知道定位所需要的参数如何通过无线获取。 强大的百度让我搜索到几篇具有指导意义的博客。 https://blog.csdn.net/sunhaobo1996/article/details/72597921?spm=1001.2014.3001.5501 ht 阅读全文

posted @ 2021-09-22 09:48 奋斗的屌丝 阅读(593) 评论(0) 推荐(0) 编辑

2021年9月2日 #

uboot 二重指针 init_fnc_t ** init_fnc_ptr

摘要: 昨晚看老朱的视频,老朱说不懂二重指针来看他这个uboot的视频是狗看星星。 当时心里虚的一逼,自己第一看确实没看懂,赶快百度看了下,在源码中把这个单独提出来练习了下。 linux 下编译。 具体代码如下: #include <stdio.h>#include <stdlib.h>typedef in 阅读全文

posted @ 2021-09-02 10:27 奋斗的屌丝 阅读(70) 评论(0) 推荐(0) 编辑

2019年10月5日 #

单链表 头插 尾插 遍历 删除

摘要: #include <stdio.h>#include <stdlib.h>#include <string.h> struct node{ int data; struct node *pNext;}; void insertTail(struct node *pH,struct node *new 阅读全文

posted @ 2019-10-05 19:01 奋斗的屌丝 阅读(134) 评论(0) 推荐(0) 编辑

单链表 头插 尾插 遍历

摘要: #include <stdio.h>#include <stdlib.h>#include <string.h> struct node{ int data; struct node *pNext;}; void insertTail(struct node *pH,struct node *new 阅读全文

posted @ 2019-10-05 18:06 奋斗的屌丝 阅读(148) 评论(0) 推荐(0) 编辑

单链表头插,尾插

摘要: #include <stdio.h>#include <stdlib.h>#include <string.h> struct node{ int data; struct node *pNext;}; void insertTail(struct node *pH,struct node *new 阅读全文

posted @ 2019-10-05 17:25 奋斗的屌丝 阅读(128) 评论(0) 推荐(0) 编辑

单链表尾插法,头结点作为结点个数进行计数

摘要: #include <stdio.h>#include <stdlib.h>#include <string.h>struct node{ int data; struct node *pNext;};void insertTail(struct node *pH,struct node *new){ 阅读全文

posted @ 2019-10-05 11:10 奋斗的屌丝 阅读(222) 评论(0) 推荐(0) 编辑

2019年3月5日 #

线程信号量同步

摘要: 来源 https://blog.csdn.net/yishizuofei/article/details/78213108 #include <stdio.h>#include <stdlib.h>#include <string.h>#include <assert.h>#include <pth 阅读全文

posted @ 2019-03-05 16:35 奋斗的屌丝 阅读(97) 评论(0) 推荐(0) 编辑

2018年6月7日 #

64位和32位的区别

摘要: 在目前的操作系统中安装软件的时候经常会区别是32位(x86)还是64位的操作系统,今天就来谈谈32位和64位到底区别在哪里。 32和64的以我个人目前的理解,主要区别就是RAM(内存)。 32位的地址线最多表示的数字是2的32次方。同理64位就是2的64次方。 内存的使用是通过访问内存地址来使用的。 阅读全文

posted @ 2018-06-07 09:28 奋斗的屌丝 阅读(1370) 评论(1) 推荐(0) 编辑

2015年10月19日 #

ARM-start.s注释(2410Init.s)

摘要: 本人只是做个笔记保存一下。来源:http://blog.itpub.net/13771794/viewspace-478463/;=========================================; NAME: 2410INIT.S; DESC: C start up codes; ... 阅读全文

posted @ 2015-10-19 19:27 奋斗的屌丝 阅读(435) 评论(0) 推荐(0) 编辑