Created
July 4, 2017 11:05
-
-
Save MarceloPincheira/3871739e08423248540f4e39b91ee46a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <pthread.h> | |
#include <semaphore.h> | |
char rut[9]; | |
int votantes, lista, listaA, listaB, nulos; | |
sem_t mutex; | |
void *handler(void *param); //Hebra. | |
int main(int argc, char** argv){ | |
int i[2]; | |
pthread_t thread_a; | |
pthread_t thread_b; | |
i[0] = 0; | |
i[1] = 1; | |
lista = 0; | |
listaA = 0; | |
listaB = 0; | |
nulos = 0; | |
votantes = 0; | |
sem_init(&mutex, 0, 1); | |
FILE *archivo; | |
archivo = fopen ( "LISTA", "r" ); | |
pthread_attr_init(&attr); //Obtener atributos predeterminados | |
//INICIO LECTURA ARCHIVO | |
if (archivo==NULL) { | |
printf("¡Error! el archivo no fue abierto\n"); | |
}else{ | |
printf("ARHCIVO ABIERTO CORRECTAMENTE\n"); | |
rewind(archivo); | |
while(feof(archivo) == 0){ | |
fscanf(archivo, "%d", &votantes); | |
if((votantes > 0) && (votantes < 20)){ | |
printf("CANTIDAD VOTANTES: %d\n", votantes); | |
if(votantes == 20){ | |
printf("Se completo el numero de votantes por hoy\n"); | |
} | |
listaA = listaB = nulos = 0; | |
for(i=0; i<votantes; i++){ | |
fscanf(archivo, "%s %d", rut, &lista); | |
pthread_create (&thread_a, NULL, (void *) &handler, (void *) &i[0]); | |
pthread_create (&thread_b, NULL, (void *) &handler, (void *) &i[1]); | |
pthread_join(thread_a, NULL); | |
pthread_join(thread_b, NULL); | |
if(lista == 1){ | |
listaA++; | |
}else if(lista == 2){ | |
listaB++; | |
}else{ | |
nulos++; | |
} | |
sem_destroy(&mutex); | |
exit(0); | |
} | |
printf("LISTA A %d LISTA B %d NULOS %d\n", listaA, listaB, nulos); | |
}else if(votantes == 0){ | |
printf("No se registraron votantes\n"); | |
} | |
else if(votantes > 20){ | |
printf("Se superó el número de votantes por día\n"); | |
} | |
} | |
} | |
fclose ( archivo ); | |
return 0; | |
} | |
void *handler(void *param){ | |
printf("%s votando...\n", rut); | |
pthread_exit(0); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment