두 개의 쓰레드를 동시에 실행하는 방법은?

hyde1004의 이미지

안녕하세요.

쓰레드에 초보인지라 기초적인 질문을 여쭙니다.
두 개의 쓰레드 A, B를 만들고, 이를 동시에 실행하고 싶은데요.

다음처럼 코딩을 했는데, 쓰레드 A가 종료되고 나서야 다음에 B가 실행이 됩니다.
즉 쓰레드 A에서 100번까지 출력한 다음에 쓰레드 B가 100번까지 출력됩니다.
(사실 제가 짜고 있는 프로그램에서는 쓰레드 A는 인터넷에서 버퍼로 데이터를 다운받는 것이고,
쓰레드 B는 버퍼로 부터 데이터를 읽어서 처리하는 부분입니다.)

만약 쓰레드 A가 1번 실행되고, 쓰레드 B가 1번 실행되는 식이면,
세마포어 등을 써서 해결하면 될것 같은데,
꼭 1:1로 실행되는 것이 아닌지라..

쓰레드안에 sleep() 함수를 넣는것도 정석은 아닌것 같구요.
조언부탁드리겠습니다.

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <pthread.h>
 
void* thread_func1(void* arg)
{
        int i=0;
        for(i=0;i<100;i++)
        {
                printf("thread1:%d\n", i);
        }
 
}
 
void* thread_func2(void* arg)
{
        int i=0;
        for(i=0;i<100;i++)
        {
                printf("thread2:%d\n", i);
        }
 
}
 
void* thread_func2(void* arg);
 
int main(void)
{
        pthread_t thread1;
        pthread_t thread2;
 
        pthread_attr_t thread_attr;
        pthread_attr_init(&thread_attr);
 
        pthread_attr_setschedpolicy(&thread_attr, SCHED_RR);
 
        pthread_create(&thread1, &thread_attr, thread_func1, NULL);
        pthread_create(&thread2, &thread_attr, thread_func2, NULL);
 
        sleep(100);
 
        return 0;
}

gooddayz의 이미지

이상하군요.. 전 동시에 됩니다..

Fe.head의 이미지

for문 사이에
sleep(1);
를 넣고 해보세요.

-----------------------
좋은사람한테 잘해라, 물어보자 남의 머리속을 볼수 없으니..
2010. 1. 20일을 기억하기를 바라며

고작 블로킹 하나, 고작 25점 중에 1점, 고작 부활동
"만약 그 순간이 온다면 그때가 네가 배구에 빠지는 순간이야"

vacancy의 이미지


context switch 되는 주기 안에
이미 thread1이 실행을 마쳐서 그렇습니다.
짜고 계시는 해당 프로그램을 만드실 땐 전혀 문제가 안될겁니다.

그래도 의심이 가시면 100까지 찍게하지 마시고
한 10000까지 찍게 해보세요.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.