Jump to content

erro com função sem_init() no linux


msmsms

Recommended Posts

estou a tentar resolver um problema com semáforos

mas quando tento utilizar a função sem_init() obtenho erro e diz que tem referência indefinida

sabem-me dizer porquê?

eu tenho a biblioteca de semáforos incluída

#include<semaphore.h>
#include<sys/sem.h>
//////////////////////////////////////////////////////////////
int pos_escrita;
int pos_leitura;
//////////////////////////////////////////////////////////////
int buffer[10]; //capacidade para 10
//////////////////////////////////////////////////////////////
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
sem_t vazio;
sem_t cheio;
//////////////////////////////////////////////////////////////
// IDs das threads
int id_produtores[100];
int id_consumidores[10];
//////////////////////////////////////////////////////////////
void init(){
sem_init(&vazio, 0, 10);
sem_init(&cheio, 0, 0);
pos_escrita = 0;
pos_leitura = 0;
}
//////////////////////////////////////////////////////////////
int main(){
int i;
init();
pthread_t threads[2]; // nº de threads

for(i=0; i<10;i++){
}

printf("\n");
return 0;
}
//////////////////////////////////////////////////////////////

o erro da consola:

/tmp/ccTcI1EU.o: In function `init':

f.c:(.text+0x1e): undefined reference to `sem_init'

f.c:(.text+0x3a): undefined reference to `sem_init'

collect2: ld returned 1 exit status

Link to comment
Share on other sites

Penso que tens que linkar a tua biblioteca fazendo algo do género:

gcc [lista_argumentos] -lpthread

onde lista_argumentos e a lista onde dizes que opções vais utilizar -o, -W, etc, e que ficheiros,.c, .cpp, .o, etc, queres utilizar para gerar o teu executável.

Edited by Colector Boy
Link to comment
Share on other sites

De nada.

Espero que tenhas conseguido resolver o problema.

existe algum forma de eu não ser obrigado a utilizar o -pthread na compilação do program?

ou seja, existe forma de eu incluir alguma instrução no corpo do meu código para que o comando: gcc prog.c

continue a funcionar mesmo estando a trabalhar com threads e semáforos?

Edited by msmsms
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.