-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgestione_shm.c
72 lines (63 loc) · 2.27 KB
/
gestione_shm.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include "gestione_shm.h"
int shm_creazione(int chiave, int grandezza_array) {
int id = 0;
if ((id = shmget(chiave, sizeof(rappresentazione_individuo) * grandezza_array, IPC_CREAT | IPC_EXCL | 0666)) == -1) {
printf("Errore durante la creazione della memoria condivisa con chiave %i.\n", chiave);
exit(EXIT_FAILURE);
}
return id;
}
int shm_creazione_descrizione(int chiave) {
int id = 0;
if ((id = shmget(chiave, sizeof(descrizione_simulazione), IPC_CREAT | IPC_EXCL | 0666)) == -1) {
printf("Errore durante la creazione della memoria condivisa con chiave %i.\n", chiave);
exit(EXIT_FAILURE);
}
return id;
}
int shm_recupero(int chiave, int grandezza_array) {
int id = 0;
if ((id = shmget(chiave, sizeof(rappresentazione_individuo) * grandezza_array, 0)) == -1) {
printf("Errore durante il recupero della memoria condivisa con chiave %i.\n", chiave);
exit(EXIT_FAILURE);
}
return id;
}
int shm_recupero_descrizione(int chiave) {
int id = 0;
if ((id = shmget(chiave, sizeof(descrizione_simulazione), 0)) == -1) {
printf("Errore durante la creazione della memoria condivisa con chiave %i.\n", chiave);
exit(EXIT_FAILURE);
}
return id;
}
void shm_attach_rappresentazione_individuo(int shmid, rappresentazione_individuo** p) {
if(((*p) = (rappresentazione_individuo*) shmat(shmid, NULL, 0)) == (void*)-1) {
printf("errore in attacco del segmento di shm con id %i nel pid %i\n", shmid, getpid());
exit(EXIT_FAILURE);
}
}
void shm_attach_descrizione_simulazione(int shmid, descrizione_simulazione** p) {
if(((*p) = (descrizione_simulazione*) shmat(shmid, NULL, 0)) == (void*)-1) {
printf("errore in attacco del segmento di shm con id %i nel pid %i\n", shmid, getpid());
exit(EXIT_FAILURE);
}
}
void shm_detach_rappresentazione_individuo(rappresentazione_individuo* shmaddr){
if(shmdt(shmaddr) == -1){
printf("Errore durante il distacco della shm\n");
exit(EXIT_FAILURE);
}
}
void shm_detach_descrizione_simulazione(descrizione_simulazione* shmaddr) {
if(shmdt(shmaddr) == -1){
printf("Errore durante il distacco della shm\n");
exit(EXIT_FAILURE);
}
}
void shm_remove(int shmid){
if(shmctl(shmid, IPC_RMID, 0) == -1){
printf("errore nella rimozione del frammento di shm\n");
exit(EXIT_FAILURE);
}
}