*본 포스팅은 2020학년 1학기 홍석인 교수님의 운영체제 수업을 두서없이 정리한 것임을 밝힙니다. System call interface에서 파라미터를 OS에게 주는 방법은 세가지가 있음 - The simplest approach: pass the parameter in registers CPU의 register 갯수는 한정돼있음. 그런데, 파라미터의 갯수는 많기 때문에 적절하지 않은 접근법임 - Block method: Parameters are stored in a block (memory), and the address of the block is passed as a parameter in register (eg. printf("hello")의 경우 hello를 메모리에, address를 reg..