摘要:
The Link Layer: Links, Access Networks, and LANS [TOC] Introduction to the Link Layer 将所有运行链路层协议的设备都叫做 node。包括有主机(hosts),路由器(routers),交换机(switches),以及 阅读全文
摘要:
THREADS: THREAD SYNCHRONIZATION [TOC] Protecting Accesses to Shared Variables: Mutexes The term critical section is used to refer to a section of code 阅读全文
摘要:
Thread Cancellation [TOC] 通常来说,多个线程并行执行直到它调用 或者从线程的start function中返回。 有时,我们想要向线程发出一个 信号来主动关闭线程。 32.1 Canceling a Thread 32.2 Calcellation State and Ty 阅读全文
摘要:
A Gentle Introduction to C++ IO Streams Manasij Mukherjee https://www.cprogramming.com/tutorial/c++ iostreams.html [TOC] C++ 的一大优势就是其IO系统,IO流。 以下特性使得I 阅读全文