Освобождение Общей Памяти


Таким образом, программа ниже обращается к фрагменту общей памяти в местоположении " shmid "и присоединяет его к указателю" total."Затем создается дочерний процесс, который обращается к этому фрагменту памяти и изменяет его, а затем, после завершения, создается другой дочерний процесс и делает то же самое, а затем третий дочерний процесс. После того, как эти 3 дочерних элемента завершили изменение значения и завершили выполнение, родительский процесс освобождает общую память, а затем программа завершает работу. У меня сложилось впечатление, что это " шмцтл" блок имел бы желаемый эффект, но, похоже, его нет.

if ((shmctl (shmid, IPC_RMID, (struct shmid_ds *) 0)) == -1)
{
  perror ("shmctl");
 exit (-1);
}

Я не верю, что это так, потому что после этого блока у меня есть следующий, который во время выполнения распечатал то же значение, что и раньше. Не означает ли это, что указатель все еще обращается к тому же самому биту памяти, или я ошибаюсь?

printf("value after memory release:%dn", total->value);

Спасибо за Ваш вклад!

#include <stdio.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <stdlib.h>
#include <unistd.h>

/* change the key number */
#define SHMKEY ((key_t) 5600) //7890

typedef struct
{
  int value;
} shared_mem;

shared_mem *total;

/*----------------------------------------------------------------------*
 * This function increases the value of shared variable "total"
 *  by one all the way to 100000
 *----------------------------------------------------------------------*/

void process1 ()
{
  int k = 0;

  while (k < 100000)
  {
      k++;
      total->value = total->value + 1;
  }
  printf ("From process1 total = %dn", total->value); //process 1 prints out total and  returns to main() function
}

/*----------------------------------------------------------------------*
 * This function increases the vlaue of shared memory variable "total"
 *  by one all the way to 170000
 *----------------------------------------------------------------------*/

void process2 ()
{
  int k = 0;

  while (k < 170000)
  {
  k++;
  total->value = total->value + 1;
  }
  printf ("From process2 total = %dn", total->value); //process 2 prints out total and returns to main() function
}
/*----------------------------------------------------------------------*
 * This function increases the vlaue of shared memory variable "total"
 *  by one all the way to 200000
 *----------------------------------------------------------------------*/

void process3 ()
{
  int k = 0;

  while (k < 200000)
  {
    k++;
    total->value = total->value + 1;
  }
  printf ("From process3 total = %dn", total->value); //process 3 prints out total and returns to main() function
}

/*----------------------------------------------------------------------*
 * MAIN()
 *----------------------------------------------------------------------*/

int main()
{
  int shmid;
  int pid1;
  int pid2;
  int pid3;
  int ID;
  int status;

  char *shmadd;
  shmadd = (char *) 0;

/* Create and connect to a shared memory segmentt*/

if ((shmid = shmget (SHMKEY, sizeof(int), IPC_CREAT | 0666)) < 0)
{
  perror ("shmget");
  exit (1);
}


if ((total = (shared_mem *) shmat (shmid, shmadd, 0)) == (shared_mem *) -1)
{
  perror ("shmat");
  exit (0);
}

total->value = 0;

if ((pid1 = fork()) == 0) //first child created
{
  process1(); //first child process begins
}

while((ID = wait(&status)) != -1) //parent loops until 1st child is finished
printf("child %d is finishedn", ID); //parent prints out returned value after child is finished


if ((pid1 != 0) && ((pid2 = fork()) == 0)) //second child created
{
  process2(); //second child process begins
}   

while((ID = wait(&status)) != -1) //parent loops until 2nd child is finished
printf("child %d is finishedn", ID); //parent prints out returned value after child is finished

if ((pid1 != 0) && (pid2 != 0) && ((pid3 = fork()) == 0)) //third child created
{
  process3(); //third child process begins
}

while((ID = wait(&status)) != -1) //parent loops until 3rd child is finished
printf("child %d is finishedn", ID); //parent prints out returned value after child is finished



if ((pid1 != 0) && (pid2 != 0) && (pid3 != 0)) 
{
  if ((shmctl (shmid, IPC_RMID, (struct shmid_ds *) 0)) == -1)
  {
 perror ("shmctl");
 exit (-1);
  }

  printf ("tt  End of Program.n"); //prints after all children have finished

  printf("value after memory release:%dn", total->value);
}
return 0;
} 

/***** Note:  loop for parent to wait for child processes to finish and print ID of each child*****/
1 2

1 ответ:

Из man-страницы shmctl:

IPC_RMID

Отметьте сегмент, подлежащий уничтожению. Сегмент будет только фактически разрушается после того, как последний процесс отсоединяет его (т. е. shm_nattch член ассоциированной структуры shmid_ds равен нулю). То вызывающий должен быть владельцем или создателем,или иметь привилегии. Если сегмент был помечен для уничтожения, затем флаг (нестандартный) SHM_DEST из shm_perm.извлечено поле mode в связанной структуре данных около Будет установлен IPC_STAT.

Вызывающий абонент должен гарантировать, что сегмент в конечном счете будет уничтожен.; в противном случае его страницы, которые были нарушены, останутся в памяти или менять.

То есть ваш код помечает сегмент для уничтожения, но не отсоединяет его до выхода программы.

Если вы хотите отсоединить его раньше, вы можете вызвать shmdt(total);. Если вы сделаете это до последнего printf, printf, скорее всего, вызовет ошибку seg.