博客地址:http://home.cnblogs.com/u/zengjianrong/

12 2019 档案

摘要:一 API 1. bsearch NAME bsearch - binary search of a sorted array SYNOPSIS #include <stdlib.h> void *bsearch(const void *key, const void *base, size_t n 阅读全文
posted @ 2019-12-24 17:22 black_man 阅读(548) 评论(0) 推荐(0) 编辑
摘要:安装apt-file, 可以查找各种库依赖的文件,或查找某个app的依赖库; sudo apt install apt-file apt-file update apt-flie search rpcgen 阅读全文
posted @ 2019-12-20 16:51 black_man 阅读(539) 评论(0) 推荐(0) 编辑
摘要:https://stackoverflow.com/questions/480764/linux-error-while-loading-shared-libraries-cannot-open-shared-object-file-no-s Your library is a dynamic li 阅读全文
posted @ 2019-12-19 17:12 black_man 阅读(314) 评论(0) 推荐(0) 编辑
摘要:参考如下链接: https://askubuntu.com/questions/131601/gpg-error-release-the-following-signatures-were-invalid-badsig/158750 阅读全文
posted @ 2019-12-09 17:20 black_man 阅读(563) 评论(0) 推荐(0) 编辑
摘要:1. 内核栈的分配,即thread_info的分配,是在do_fork->dup_task_struct中分配(默认为2个pages),并赋值给task_struct->stack; 2. 用户栈的分配分两种: 一是pthread create会事先mmap分配好用户栈,传给do_fork->cop 阅读全文
posted @ 2019-12-03 01:01 black_man 阅读(2456) 评论(0) 推荐(0) 编辑