MacOS驱动代码移植问题记录
在C程序移植到macos 驱动程序中时,一系列问题的记录。 解决问题完成后分析问题出现原因是: 1 strn… Continue Reading ‘MacOS驱动代码移植问题记录’
在C程序移植到macos 驱动程序中时,一系列问题的记录。 解决问题完成后分析问题出现原因是: 1 strn… Continue Reading ‘MacOS驱动代码移植问题记录’
Rust 是一种为性能和安全性,尤其是安全并发性而设计的编程语言。它的语法类似于 C++,但它可以使用借用检查… Continue Reading ‘Rust对比C 之DPDK’
chromium 内核沙盒中把各种进程分类比如渲染进程,GPU进程,工具类进程,插件进程。 extern in… Continue Reading ‘chromium内核-沙盒机制与各种类型的进程’
转自rustwiki : https://rustwiki.org/zh-CN/edition-guide/r… Continue Reading ‘[Rust]SIMD 更快的计算’
由于rust属于编译型静态语言,所以trait 这种用于修饰类都需要导入,才能使用该trait。函数和操作符等… Continue Reading ‘rust trait 使用概念’
桥接网卡的意义:通常使多个网段流量可以互通,比如虚拟网卡和物理网卡。 网桥设置部署: 环境: 有物理网卡eth… Continue Reading ‘linux 网卡桥接记录’
在做隧道程序过程中发现TCP重传问题,故研究TCP重传。发现如果多隧道同时路由数据包可能造成TCP协议自己认为… Continue Reading ‘隧道TCP重传问题’
if(CMAKE_CXX_COMPILER_ID MATCHES “MSVC”) #判断编译器是vc if(C… Continue Reading ‘cmake 判断编译器以及cpu位宽’
一 安装环境 yum install epel-release yum install httpd mod_s… Continue Reading ‘Centos apache Let’s Encrypt免费SSL 配置’