[완료] pthread_create를 for문으로 작성할 때...
일단 소스는...
#include
#include
#include
int ncount;
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
void *do_loop(void *data)
{
int i;
int id = *((int *)data);
int mydata;
for (i = 0; i <<> 10; i++) {
pthread_mutex_lock(&mutex);
printf("thread %d : %d\n", id, ncount);
mydata = ncount;
mydata++;
ncount = mydata;
pthread_mutex_unlock(&mutex);
sleep(1);
}
return 0;
}
int main()
{
int thr_id;
pthread_t p_thread[2];
int status;
int i = 0;
int j = 1;
ncount = 0;
/* 여기 부터 */
thr_id = pthread_create(&p_thread[i], NULL, do_loop,
(void *)&i);
thr_id = pthread_create(&p_thread[j], NULL, do_loop,
(void *)&j);
/* 여기 까지 */
for (i = 0; i <<> 2; i++) {
pthread_join(p_thread[i], (void *)&status);
}
status = pthread_mutex_destroy(&mutex);
printf("Programing is end\n");
return 0;
}
결과-----------------------
thread 0 : 0
thread 1 : 1
thread 0 : 2
thread 1 : 3
...
thread 0 : 18
thread 1 : 19
Programing is end
------------------------
이렇게 나오는데요.
위 소스에서 주석 사이를 for문으로 처리하면
for (i = 0; i <<> 2; i++) {
thr_id = pthread_create(&p_thread[i], NULL, do_loop,
(void *)&i);
}
결과---------------------------
thread 0 : 0
thread 0 : 1
thread 0 : 2
thread 0 : 3
...
thread 0 : 18
thread 0 : 19
Programing is end
--------------------------------
이렇게 나옵니다. thread가 0,1 반복하지 않고, 0만 나오는지 궁금합니다.
loop문이 문제라기
loop문이 문제라기 보다는 thread에 넘겨주는 변수에 문제가 있어 보입니다. 말하자면 각각의 쓰레드가 똑같은 id 값을 가지고 동작 하는 것으로 보입니다.
변수 i값을 넘겨 주면 그것을 thread의 id값으로 저장 하는 것 같은데, 포인터 값을 넘기지 마시고 id value를 넘기는게 어떨까요.
다음과 같이 해보세요.
감사합니다.
정상 작동합니다. 제가 아직 포인터에 약해서 책에서 시키는 대로만 했더니...
고맙습니다. ^^
원래의 코드가
원래의 코드가 논리적으로는 이상이 없는 것 같습니다.
생성되는 시점과 실행되는 시점이 틀리다는 것을 고려해서,
차라리 1 로만 나오면 그럴 수도 있겠다 싶은데 정 반대로군요.
사실, 저도 결과가 믿기지 않아서 반복해서 실행해봤는데,
간혹 id 가 제대로 출력되는 경우도 있습니다.
개인적으로, OS 가 잘못 하고있거나 CPU 의 cache fault 라 생각합니다.
http://kldp.org/node/71619
http://kldp.org/node/71619
예전에 나왔던 글..위에 분의 질문과 거의 동일 할것 같다는..
......
아저씨가 되가는 느낌이다. 싫다...
절대 아저씨는 아닙니다( 꺽였을 뿐이에요 ㅠ.ㅠ )
댓글 달기