Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*******************************************
- * Author : Diego Cordoba / @d1cor *
- * Purpose : JuncoTIC / UM *
- * Contact : juncotic.com *
- *******************************************/
- #include<stdio.h>
- #include<stdlib.h>
- #include<sys/types.h>
- #include<sys/stat.h>
- #include<unistd.h>
- #include<string.h>
- #include<fcntl.h>
- #include<errno.h>
- #include<sys/ipc.h>
- #include<sys/sem.h>
- int main(int argc, char** argv) {
- int fd; //recurso compartido
- int i,j;
- char* error;
- int sem_id;
- struct sembuf operacion;
- int clave;
- if((fd=open("/tmp/file_shared",O_CREAT|O_RDWR,0666))==-1){
- error="open";
- goto err;
- }
- if((clave=ftok(".",11))<0){
- error="ftok";
- goto err;
- }
- if((sem_id=semget(clave,1,0666|IPC_CREAT))<0){
- error="semget";
- goto err;
- }
- for(i=0;i<5;i++){
- operacion.sem_num=0;
- operacion.sem_op=-1;
- semop(sem_id,&operacion,1);
- printf("Proceso B escribiendo el archivo\n");
- for(j=0;j<3;j++){ //procesando recurso
- printf(".\n");
- lseek(fd,0,SEEK_END);
- write(fd,"B",1);
- sleep(1);
- }
- printf("Proceso B liberando el archivo\n");
- operacion.sem_num=0;
- operacion.sem_op=1;
- semop(sem_id,&operacion,1);
- }
- close(fd);
- //borramos el semaforo
- semctl(sem_id,0,IPC_RMID,NULL);
- return 0;
- err:
- fprintf(stderr,"%s (%d) - %s\n",error,errno,strerror(errno));
- exit(1);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement