fix ubuntu kernel compiling debian/canonical-certs.pem error

make[1]: *** No rule to make target 'debian/canonical-certs.pem', needed by 'certs/x509_certificate_list'. Stop. make: *** [Makefile:1809: certs] Error 2

C++ 中的智能指针

C++ 中的智能指针,具体的实现原理,同时使用它的优点,以及使用它的场景,有哪些场景不适合使用它

linux epoll 机制

Linux epoll 机制是一种 I/O 事件通知机制,它可以用来监听多个文件描述符上的事件。相比于传统的 select 和 poll 机制,epoll 更加灵活,具有更高的效率和更好的扩展性,可以处理更多的并发连接。