본문 바로가기

이것 저것 정리

(3)
Lock 심화(1) - RW Lock Lock 심화(1) ReaderWriterLock 에 대해 정리 https://learn.microsoft.com/en-us/dotnet/api/system.threading.readerwriterlock?view=net-7.0 ReaderWriterLock Class (System.Threading) Defines a lock that supports single writers and multiple readers. learn.microsoft.com Microsoft 에서 정의한 ReaderWriterLock 내용은 다음과 같다. Defines a lock that supports single writers and multiple readers. Single writers, Multiple reade..
Lock 종류(1) - Spin Lock, Mutex, Critical Section, Semaphore 오늘은 Lock 종류에 대해 정리 해보았다. (여기선 따로 Lock 필요성에 대해 정리하지 않겠음.) (정리하다 보니 내가 읽은 글들을 해석, 정리(...? 나열 ㅋㅋㅋ...) 해둔 느낌밖에 없는데, 나를 위한 글이라 생각하고 뻔뻔해져 보겠다.) Spin Lock (스핀 락) https://sirum.tistory.com/entry/%EC%BB%A4%EB%84%90-%EB%A0%88%EB%B2%A8-%EC%8A%A4%EB%A0%88%EB%93%9C-vs-%EC%9C%A0%EC%A0%80-%EB%A0%88%EB%B2%A8-%EC%8A%A4%EB%A0%88%EB%93%9C 커널 레벨 스레드 vs 유저 레벨 스레드 이것 저것 내용들을 정리하려다가 아래의 글을 발견했는데 단계적으로 용어를 정의하고 커널 레벨 스..
커널 레벨 스레드 vs 유저 레벨 스레드 이것 저것 내용들을 정리하려다가 아래의 글을 발견했는데 단계적으로 용어를 정의하고 커널 레벨 스레드란 결국 무엇이고, 유저 레벨 스레드가 뭔지 쉽게 접근하여 설명해준 글이 있어 정리 해보았다. https://www.quora.com/What-is-the-difference-between-user-level-and-kernel-level-threads/answer/Mohammed-Abualrob What is the difference between user level and kernel level threads? Mohammed Abualrob's answer: This is a copy & paste from an article that I wrote recently about the topic. Qu..