上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页
摘要: 本文是我迭代学习的笔记,不保证内容的严谨性。 目录 "1.linux内核模块简介" "2.linux内核模块示例" "3.内核模块加载/卸载原理" 1. linux内核模块简介 由于linux内核需要支持多种功能模块或者硬件设备,而这些功能模块或者硬件设备在不同板子上千差万别。受存储空间的限制,不可 阅读全文
posted @ 2020-03-21 15:02 thammer 阅读(440) 评论(0) 推荐(0) 编辑
摘要: do {} while(0)的妙用 转自 "https://blog.csdn.net/qq_16777851/article/details/80867981" 避免空的宏定义在声明时出现警告 避免出现歧义代码 上面宏在使用时,展开后: 有些风格的代码只有一个语句的if会省略{},这样导致了仅 受 阅读全文
posted @ 2020-03-20 15:10 thammer 阅读(372) 评论(0) 推荐(0) 编辑
摘要: https://magodo.github.io/alsa pcm/ https://www.cnblogs.com/lifan3a/articles/5481993.html 阅读全文
posted @ 2019-08-21 16:55 thammer 阅读(152) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/xiaojianliu/p/9689118.html _labelTop 阅读全文
posted @ 2019-08-17 16:30 thammer 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 错误提示:This license key has been revoked xxxxx 即: Windows 系统: 解决方法: 删除以下目录中的所有文件即可。 C:\Users\Administrator\AppData\Roaming\Scooter Software\Beyond Compa 阅读全文
posted @ 2019-08-05 15:57 thammer 阅读(4317) 评论(0) 推荐(0) 编辑
摘要: 定义 作用 在范围[ first, last ]之间查找第一个等于 val 的元素。找到则返回第一个匹配元素的iterator,否则返回last迭代器。 此函数使用 operator== 来逐个比较元素和val。 改函数模板等效如下: 参数 first,last 输入迭代器,分别作为squence起 阅读全文
posted @ 2019-07-18 09:28 thammer 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/Acmen/p/5190391.html NMap,也就是Network Mapper,是Linux下的网络扫描和嗅探工具包。 nmap是在网络安全渗透测试中经常会用到的强大的扫描器。功能之强大,不言而喻。下面介绍一下它的几种扫描命令。具体的还是 阅读全文
posted @ 2019-06-26 08:58 thammer 阅读(433) 评论(0) 推荐(0) 编辑
摘要: "support utf 8" cgdb github上的issues里面有人提到了这个问题,维护者回复的是需要使用 这个支持宽字符的库来解决这个问题。 查看是否安装了该库 ,未安装则查看有哪些库: shell thomas@ubuntu:~$ apt search libncursesw Sort 阅读全文
posted @ 2019-06-12 10:19 thammer 阅读(763) 评论(0) 推荐(0) 编辑
摘要: 1. OpenWrt目录结构说明 作者:辛勤的摆渡人 来源:CSDN 原文:https://blog.csdn.net/hunter168_wang/article/details/50780597 1.1. bin bin目录存放的是一些输出文件,主要是存放OpenWrt编译好的开发环境,比如to 阅读全文
posted @ 2019-05-23 16:55 thammer 阅读(608) 评论(0) 推荐(0) 编辑
摘要: cat /proc/sys/kernel/hotplug /sbin/hotplug cat /sbin/hotplug-call #!/bin/sh # Copyright (C) 2006-2010 OpenWrt.org export HOTPLUG_TYPE="$1" . /lib/func 阅读全文
posted @ 2019-05-08 16:00 thammer 阅读(483) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 20 下一页