会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
孤独的程序员dis1500
知识就是希望
2021年1月8日
Normal priority read thead.
摘要: Normal priority read thead.
阅读全文
posted @ 2021-01-08 08:53 lydstory
阅读(48)
评论(0)
推荐(0)
io复用select理解
摘要: USHORT nPort = 4567; //此服务器监听端口号 //创建监听套接字 SOCKET sListen = socket(AF_INET,SOCK_STREAM,IPPROTO_TCP); sockaddr_in sin; sin.sin_family = AF_INET; sin.si
阅读全文
posted @ 2021-01-08 08:40 lydstory
阅读(171)
评论(0)
推荐(0)
Make master thread emulator
摘要: Make master thread emulator 创建主现成模拟器
阅读全文
posted @ 2021-01-08 08:17 lydstory
阅读(52)
评论(0)
推荐(0)
c语言基础: calloc
摘要: 函数名: calloc 函数原型:void* calloc(unsigned int num,unsigned int size); 功能:在内存的动态存储区中分配num个长度为size的连续空间,函数返回一个指向分配起始地址的指针;如果分配不成功,返回NULL。 #define XCALLOC(x
阅读全文
posted @ 2021-01-08 07:45 lydstory
阅读(540)
评论(0)
推荐(0)
爱赛立
摘要: 爱赛立北京 熟悉VPN和网络虚拟化技术,如OpenVPN、IPSec、Vxlan、DPDK等,熟悉基本的路由原理;3. 具有SD-WAN或VCPE产品开发经验者优先;4. 具有OVS、VPP开源项目经验者优先。
阅读全文
posted @ 2021-01-08 05:20 lydstory
阅读(84)
评论(0)
推荐(0)
struct sysinfo 用法
摘要: #include <sys/sysinfo.h> long ios_get_uptime(void) { struct sysinfo info; sysinfo(&info); return info.uptime; } int main() { long uptime; uptime = ios
阅读全文
posted @ 2021-01-08 05:11 lydstory
阅读(569)
评论(0)
推荐(0)
驱动开发职责(再一次确认)
摘要: 职位描述 ARM嵌入式Linux驱动开发 岗位职责:1. 从事嵌入式平台上的linux内核、驱动程序开发;2. 根据设计需求,独立完成嵌入式软件的设计、编码和调试; 3. 软件代码编写与调试; 4. 开发文档编写; 任职要求:1、至少两年以上嵌入式系统(Embedded Linux)软件开发经验,精
阅读全文
posted @ 2021-01-08 05:06 lydstory
阅读(334)
评论(0)
推荐(0)
c语言基础:linux ssize_t(signed int)
摘要: ssize_t与size_t-linux ssize_t: signed size_t [注释:signed 有符号] size_t: 标准C库中定义的,应为unsigned int [注释:unsigned 无符号] 一、size_t 增强移植性: [注释:不同的系统上,定义size_t可能不一样
阅读全文
posted @ 2021-01-08 04:35 lydstory
阅读(686)
评论(0)
推荐(0)
c语言基础: define改变变量值
摘要: #include <stdio.h> static char* g_templname[2] = { "blacknamelist", "whitenamelist" }; #define ChangState(who,state) \ do { \ who = state; \ }while (0
阅读全文
posted @ 2021-01-08 04:17 lydstory
阅读(1023)
评论(0)
推荐(0)
c语言基础: static char*数组
摘要: #include <stdio.h> static char* g_templname[2] = { "blacknamelist", "whitenamelist" }; int main() { printf("%s\n",g_templname[1]); printf("Hello, Worl
阅读全文
posted @ 2021-01-08 03:43 lydstory
阅读(930)
评论(0)
推荐(0)
zebra
摘要: https://www.cnblogs.com/iplus/archive/2013/01/28/4467339.html 开源路由软件 linux下zebra之vtysh命令行编程入门参考 https://wenku.baidu.com/view/70989d2bb7360b4c2e3f64a4.
阅读全文
posted @ 2021-01-08 03:38 lydstory
阅读(46)
评论(0)
推荐(0)
lighttpd 运行php
摘要: 嵌入式运行php的 一种方案 路由设备 网络设备使用
阅读全文
posted @ 2021-01-08 03:28 lydstory
阅读(70)
评论(0)
推荐(0)
即时消息
摘要: 即时消息 p2p阻断 DDos防护
阅读全文
posted @ 2021-01-08 03:25 lydstory
阅读(61)
评论(0)
推荐(0)
Marvell迈威
摘要: https://baike.baidu.com/item/Marvell/4208660?fr=aladdin
阅读全文
posted @ 2021-01-08 03:18 lydstory
阅读(48)
评论(0)
推荐(0)
squashfs
摘要: linux 只读文件系统
阅读全文
posted @ 2021-01-08 03:09 lydstory
阅读(58)
评论(0)
推荐(0)
copy_from_user copy_to_user
摘要: copy_from_user copy_to_user
阅读全文
posted @ 2021-01-08 02:56 lydstory
阅读(98)
评论(0)
推荐(0)
linux简单驱动
摘要: https://www.cnblogs.com/amanlikethis/p/4914510.html
阅读全文
posted @ 2021-01-08 02:51 lydstory
阅读(55)
评论(0)
推荐(0)
pci设备总线驱动
摘要: https://blog.csdn.net/qq_41782149/article/details/89885008
阅读全文
posted @ 2021-01-08 02:45 lydstory
阅读(104)
评论(0)
推荐(0)
hostapd
摘要: hostapd https://www.cnblogs.com/ahcc08/p/8495286.html
阅读全文
posted @ 2021-01-08 02:27 lydstory
阅读(123)
评论(0)
推荐(0)
pdf的2个问题:有时间搞一下
摘要: 1.tiff文件保存为pdf双层可以(百度 )
阅读全文
posted @ 2021-01-08 01:17 lydstory
阅读(76)
评论(0)
推荐(0)
导航
博客园
首页
新随笔
联系
订阅
管理
公告