摘要: Ctrl Shift P 输入:snipp,选配置用户代码片段,新建全局代码片段文件,修改下列模板: { // Place your 全局 snippets here. Each snippet is defined under a snippet name and has a scope, pre 阅读全文
posted @ 2022-01-17 21:28 hellozhangjz 阅读(936) 评论(0) 推荐(0)
摘要: exec函数不创建新进程,只用磁盘上的程序替换当前进程的正文段、数据段、堆段和栈段。然后从main函数开始运行。 exec函数族使用说明 #include <unistd.h> int execl(const char *pathname, const char *arg, ...) int exe 阅读全文
posted @ 2022-01-17 15:56 hellozhangjz 阅读(112) 评论(0) 推荐(0)