... | @@ -114,10 +114,10 @@ The binary writer writes the in-memory binary representation of the integer. The |
... | @@ -114,10 +114,10 @@ The binary writer writes the in-memory binary representation of the integer. The |
|
```
|
|
```
|
|
|
|
|
|
### Context Switching
|
|
### Context Switching
|
|

|
|

|
|
thread는 CPU의 명령어 실행과 관련된 정보를 보관하고 있는데, 이를 thread context라 한다. CPU는 현재 실행 중인 thread를 다음에 이어서 실행할 수 있게 CPU의 환경 정보를 thread context에 보관한다. 그리고 OS로부터 할당받은 thread context정보를 다시 CPU내부에 로드해서 마치 해당 thread가 실행되고 있었던 상태인 것처럼 복원 후 실행한다. 이를 context switching이라 한다.
|
|
thread는 CPU의 명령어 실행과 관련된 정보를 보관하고 있는데, 이를 thread context라 한다. CPU는 현재 실행 중인 thread를 다음에 이어서 실행할 수 있게 CPU의 환경 정보를 thread context에 보관한다. 그리고 OS로부터 할당받은 thread context정보를 다시 CPU내부에 로드해서 마치 해당 thread가 실행되고 있었던 상태인 것처럼 복원 후 실행한다. 이를 context switching이라 한다.
|
|
|
|
|
|
##### 출처
|
|
##### 출처
|
|
Int32.parse vs Convert.ToInt32(string)(http://www.codeproject.com/Articles/32885/Difference-Between-Int-Parse-Convert-ToInt-and)
|
|
Int32.parse vs Convert.ToInt32(string)(http://www.codeproject.com/Articles/32885/Difference-Between-Int-Parse-Convert-ToInt-and)
|
|
string(https://msdn.microsoft.com/ko-kr/library/s8s7t687.aspx)
|
|
string(https://msdn.microsoft.com/ko-kr/library/s8s7t687.aspx)
|
|
Variable Scope in Lambda Expressions(https://msdn.microsoft.com/ko-kr/library/bb397687.aspx)
|
|
Variable Scope in Lambda Expressions(https://msdn.microsoft.com/ko-kr/library/bb397687.aspx)
|
... | | ... | |