摘要: Cpp primer plus notes ch2. get start #include 预处理器编译指令。 using namespace 编译指令。 void关键字显示说明不接受任何参数。 //myfirst.cpp #include <iostream> int main(void) { u 阅读全文
posted @ 2021-05-13 18:36 Xuperior 阅读(88) 评论(0) 推荐(0) 编辑
摘要: proto├── 21905-h00-Vocabulary.doc├── 23501-fa0-System architecture for the 5G System (5GS) Stage 2.docx 5G的系统构架 核心网 - 5.7 QoS model 8.3.1 User Plane P 阅读全文
posted @ 2021-05-11 15:51 Xuperior 阅读(1019) 评论(0) 推荐(0) 编辑
摘要: [root@localhost ~]# ar --helpUsage: ar [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [--plugin <name>] [member-name] [count] archive-file file. 阅读全文
posted @ 2021-04-19 11:00 Xuperior 阅读(316) 评论(0) 推荐(0) 编辑
摘要: [root@localhost ~]# objdump --help用法:objdump <选项> <文件> 显示来自目标 <文件> 的信息。 至少必须给出以下选项之一: -a, --archive-headers Display archive header information -f, --f 阅读全文
posted @ 2021-04-08 17:30 Xuperior 阅读(326) 评论(0) 推荐(0) 编辑
摘要: [root@localhost ~]# awk --helpUsage: awk [POSIX or GNU style options] -f progfile [--] file ...Usage: awk [POSIX or GNU style options] [--] 'program' 阅读全文
posted @ 2021-04-08 10:00 Xuperior 阅读(43) 评论(0) 推荐(0) 编辑
摘要: [root@localhost ~]# cut --help用法:cut [选项]... [文件]...Print selected parts of lines from each FILE to standard output. Mandatory arguments to long optio 阅读全文
posted @ 2021-04-08 09:55 Xuperior 阅读(73) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<stdlib.h> #include <inttypes.h> #include <unistd.h> #include <sys/time.h> static unsigned long long rdtsc(void) { unsigned 阅读全文
posted @ 2021-03-29 20:06 Xuperior 阅读(857) 评论(0) 推荐(0) 编辑
摘要: 升级dpdk-stable-20.11.1版本发现,原来默认make方式构建已经没有了;变成了meson & ninja组合,试了一下,构建速度提升了不少; meson build && ninja -C build // sudo ninja -C build install 赶紧去学习下吧, 后 阅读全文
posted @ 2021-03-28 23:53 Xuperior 阅读(16199) 评论(0) 推荐(0) 编辑
摘要: 系统版本: [root@xuperior-pc gcc-10.2.0]# cat /etc/centos-release CentOS Stream release 8 当前gcc版本 [root@xuperior-pc gcc-10.2.0]# gcc -vUsing built-in specs 阅读全文
posted @ 2021-03-28 10:49 Xuperior 阅读(976) 评论(0) 推荐(0) 编辑
摘要: 来源: https://docs.o-ran-sc.org/projects/o-ran-sc-o-du-phy/en/latest/wls-lib.html Wls_lib是英特尔开元的一个无线服务库,支持实现gNb或eNb的应用程序使用的共享内存和缓冲区管理。该库使用DPDK、libhugetl 阅读全文
posted @ 2021-03-27 11:46 Xuperior 阅读(822) 评论(0) 推荐(0) 编辑