摘要:
Arguments The arguments to profile probes are as follows: arg0 The program counter (PC) in the kernel at the time that the probe fired, or 0 if the cu 阅读全文
摘要:
how to write your first linux device driver 0. environment-ubuntu 1804 64bit 1. apt-get install linux-headers-$(uname -r) 2. code hello.c 3. Makefile 阅读全文
摘要:
1、显示当前目录及子目录每个文件占用的块数量 du 2、显示当前目录占用的块数量 du -s 3、查看当前目录占用空间啊大小(空间大小= 块数量 * 块大小) du -sh 4、查看当前目录各个文件占用空间大小 du -sh * 5、通过字节(k)单位显示当前目录各个文件大小 du -shk * 6 阅读全文
摘要:
c++ rvo vs std::move To summarize, RVO is a compiler optimization technique, while std::move is just an rvalue cast, which also instructs the compiler 阅读全文