#c #macos #g #pthreads #compiler-errors
#c #macos #g #pthreads #ошибки компилятора
Вопрос:
Я пытаюсь скомпилировать этот код:
/* Includes */
#include <unistd.h> /* Symbolic Constants */
#include <sys/types.h> /* Primitive System Data Types */
#include <errno.h> /* Errors */
#include <stdio.h> /* Input/Output */
#include <stdlib.h> /* General Utilities */
#include <pthread.h> /* POSIX Threads */
#include <string.h> /* String handling */
#include <semaphore.h> /* Semaphore */
/* prototype for thread routine */
void handler ( void *ptr );
/* global vars */
/* semaphores are declared global so they can be accessed
in main() and in thread routine,
here, the semaphore is used as a mutex */
sem_t mutex;
int counter; /* shared variable */
int main()
{
int i[2];
pthread_t thread_a;
pthread_t thread_b;
i[0] = 0; /* argument to threads */
i[1] = 1;
sem_init(amp;mutex, 0, 1); /* initialize mutex to 1 - binary semaphore */
/* second param = 0 - semaphore is local */
/* Note: you can check if thread has been successfully created by checking return value of
pthread_create */
pthread_create (amp;thread_a, NULL, (void *) amp;handler, (void *) amp;i[0]);
pthread_create (amp;thread_b, NULL, (void *) amp;handler, (void *) amp;i[1]);
pthread_join(thread_a, NULL);
pthread_join(thread_b, NULL);
sem_destroy(amp;mutex); /* destroy semaphore */
/* exit */
exit(0);
} /* main() */
void handler ( void *ptr )
{
int x;
x = *((int *) ptr);
printf("Thread %d: Waiting to enter critical region...n", x);
sem_wait(amp;mutex); /* down semaphore */
/* START CRITICAL REGION */
printf("Thread %d: Now in critical region...n", x);
printf("Thread %d: Counter Value: %dn", x, counter);
printf("Thread %d: Incrementing Counter...n", x);
counter ;
printf("Thread %d: New Counter Value: %dn", x, counter);
printf("Thread %d: Exiting critical region...n", x);
/* END CRITICAL REGION */
sem_post(amp;mutex); /* up semaphore */
pthread_exit(0); /* exit thread */
}
Но я получаю эту ошибку:
sem-ex.c: In function ‘int main()’:
sem-ex.c:35: error: invalid conversion from ‘void*’ to ‘void* (*)(void*)’
sem-ex.c:35: error: initializing argument 3 of ‘int pthread_create(_opaque_pthread_t**, const pthread_attr_t*, void* (*)(void*), void*)’
sem-ex.c:36: error: invalid conversion from ‘void*’ to ‘void* (*)(void*)’
sem-ex.c:36: error: initializing argument 3 of ‘int pthread_create(_opaque_pthread_t**, const pthread_attr_t*, void* (*)(void*), void*)’
Чего я не понимаю / делаю неправильно? Спасибо.
Ответ №1:
Вы не можете привести адрес вашей handle
функции к void *
перед передачей ее в pthread_create
. Просто передайте это как есть.
pthread_create (amp;thread_a, NULL, amp;handler, (void *) amp;i[0]);
pthread_create (amp;thread_b, NULL, amp;handler, (void *) amp;i[1]);
Кроме того, измените подпись вашей handler
функции в соответствии с комментарием nos ниже.
Комментарии:
1. В дополнение к этому
handler
функция также должна возвращать значение void*, поэтому оно должно бытьvoid *handler (void *ptr);
Ответ №2:
У вас две проблемы:
- Ваша функция «обработчик» имеет неправильную подпись. Он должен иметь возвращаемый тип
void*
, неvoid
. - Вы также должны удалить приведение (приведение в любом случае было к неправильному типу, и, следовательно, ваша ошибка).