• Linux,  Programming

    [Linux] Pthread 개념 (pthread_create / pthread_join / pthread_exit)

    Thread는 process와 다르게 thread 끼리는 서로 메모리를 공유한다. (물론 process간 메모리를 공유하는 부분이 있다.) 특히 global variable을 thread간은 공유하며, process간은 공유하지 않는다. 또한 local variable은 process간 모두 공유하지 않고 thread는 공유한다. Linux에선 pthread_create()…