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
阅读全文
摘要:安装apt-file, 可以查找各种库依赖的文件,或查找某个app的依赖库; sudo apt install apt-file apt-file update apt-flie search rpcgen
阅读全文
摘要:https://stackoverflow.com/questions/480764/linux-error-while-loading-shared-libraries-cannot-open-shared-object-file-no-s Your library is a dynamic li
阅读全文
摘要:参考如下链接: https://askubuntu.com/questions/131601/gpg-error-release-the-following-signatures-were-invalid-badsig/158750
阅读全文
摘要:1. 内核栈的分配,即thread_info的分配,是在do_fork->dup_task_struct中分配(默认为2个pages),并赋值给task_struct->stack; 2. 用户栈的分配分两种: 一是pthread create会事先mmap分配好用户栈,传给do_fork->cop
阅读全文