摘要:
1. 定时器使用 #include <stdio.h>#include <libubox/uloop.h> void my_timer_callback(struct uloop_timeout *timeout) { printf("Timer trigger.\n"); uloop_timeou 阅读全文
摘要:
#include <stdio.h> int main(){ char *p[] = {"asdf"}; printf(p[0]); char *m = "hello"; printf(m);} 阅读全文
摘要:
1 find . -mmin -10 -type d #最近10分钟内修改过的所有目录,-type d 表示只匹配目录 阅读全文
摘要:
1 signal(SIGCHLD, SIG_DFL); ret = system(buf); signal(SIGCHLD, SIG_IGN); 默认情况下,父进程会接收到这个信号并调用wait()来回收子进程的资源。但如果父进程不希望等待子进程结束,它可以选择忽略SIGCHLD信号。这样,子进程将 阅读全文
摘要:
把dos的换行符转换为linux格式即可 dos2unix file 阅读全文
摘要:
编辑jihuo.bat,管理员权限运行 slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GXslmgr /skms kms.03k.orgslmgr /ato 阅读全文
摘要:
1、介绍-Wl后面的东西是作为参数传递给链接器ld的。比如: gcc -Wl,aaa,bbb,ccc 最后会被解释为: ld aaa bbb ccc 2、-Wl,-Map=xxx.txt 生成map文件如下会生成map文件mymap.txt。 gcc -Wl,-Map=mymap.txt -g ma 阅读全文
摘要:
tar zcvf toolchain.tar.gz -C opt/cigtools/rtl_9607C/ msdk-4.8.5-mips-EB-3.18-g2.23-m32ut-170331_cmcc -C到指定的文件夹然后指定要压缩的文件 如果要压缩文件夹,-C指定的文件夹剥离1层,然后执行文件夹 阅读全文
摘要:
1 函数调用 $(<function> <arguments>)#或${<function> <arguments>} 2 wildcard函数调用 $(wildcard <PATTERN...>) #用于获取匹配该模式下的所有文件列表 $(wildcard *.cpp *.c) 3 patsubs 阅读全文