Передача данных в несколько потоков - PullRequest
0 голосов
/ 01 мая 2010

Я изучаю этот код из какой-то книги:

#include <pthread.h>
#include <stdio.h>

/* Parameters to print_function.   */
struct char_print_parms {
    /* The character to print. */
    char character;
    /* The number of times to print it.  */
    int count;
};

/* Prints a number of characters to stderr, as given by PARAMETERS,
    which is a pointer to a struct char_print_parms. */
void* char_print(void* parameters) {
    /* Cast the cookie pointer to the right type. */
    struct char_print_parms* p = (struct char_print_parms*) parameters;
    int i;
    for (i = 0; i < p->count; ++i)
        fputc(p->character, stderr);
    return NULL;
}

/* The main program.   */
int main() {
    pthread_t thread1_id;

    pthread_t thread2_id;
    struct char_print_parms thread1_args;
    struct char_print_parms thread2_args;
    /* Create a new thread to print 30,000 ’x’s. */
    thread1_args.character = 'x';
    thread1_args.count = 30000;
    pthread_create(&thread1_id, NULL, &char_print, &thread1_args);
    /* Create a new thread to print 20,000 o’s. */
    thread2_args.character = 'o';
    thread2_args.count = 20000;
    pthread_create(&thread2_id, NULL, &char_print, &thread2_args);
    usleep(20);
    return 0;
}

после запуска этого кода я каждый раз вижу разные результаты.и какое-то время искажал результат.что не так и как правильно это сделать?

1 Ответ

0 голосов
/ 01 мая 2010

Добавить:

pthread_join( thread1_id, NULL);
pthread_join( thread2_id, NULL); 

в конец вашего кода, до возврата в основной. Ваш процесс заканчивается до того, как ваши темы могут завершиться. Сон в 20 микросекунд не достаточен для завершения работы ваших потоков. Безопаснее дождаться возврата потоков.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...