Computer Network Chapter 13

Chapter 13) Introduction to the Transport Layer Flow control(흐름 제어) 수신측과 송신측의 데이터 처리 속도 차이를 해결하기 위한 기법 송신측의 전송량이 수신측의 처리량보다 많은 경우,...

   Dec 17, 2022     1 min read
System Programming Ch15 - Ch16

💡 Chap_15 Pipes (pipe는 개념자체가 그렇게 어렵지 않기 때문에 단답형으로 나올 확률 큼) pipe half - duplex : 보통 반이중이라고 함, 단방향, 특정시점에는 한명만 통신가능, 한명은...

   Dec 9, 2022     8 min read
System Programming Ch9 - Ch10

💡 Chap_9 Sessions 시스템프로그래밍에서의 session은? → 하나 또는 그 이상의 프로세스 그룹 Controlling Terminal session leader : 다른말로 login shell 또는 controlling process 어떤 서버에 접속하여...

   Dec 9, 2022     10 min read
System Programming Ch7 - Ch8

💡 Chap_7 Memory Layout of a C Program ☁️ Memory Layout (가상 메모리 구조) high address : 커널이 있음 stack : 커널을 침번하면 안되기 때문에 스택은...

   Dec 9, 2022     4 min read
System Programming Ch5

💡 Chap_5 Stream Orientation #include <stdio.h> #include <wchar.h> int fwide(FILE *fp, int mode); wchar.h : singlebyte를 쓸지 multibyte를 쓸지 제어할 수 있는 헤더 singlebyte : 1...

   Oct 21, 2022     3 min read