МІНІСТЕРСТВО ОСВІТИ І НАУКИ УКРАЇНИ
НАЦІОНАЛЬНИЙ УНІВЕРСИТЕТ«ЛЬВІВСЬКА ПОЛІТЕХНІКА»
Кафедра ЕОМ
Звіт
лабораторна робота №4
«Пам'ять, що розділяється, в ОС UNIX»
з дисципліни:
«Організація обчислювальних процесів у паралельних системах»
Мета: засвоїти принципи комунікації процесів через пам'ять, що розділяється між процесами.
Порядок виконання роботи:
1Зареєструватись в системі.
2. Запустити Midnight Commander (mc).
3. У своїй директорії створити піддиректорію з ім’ям Lab4.
4. Відкомпілювати та запустити програми-приклади на svm-070. Пояснити алгоритми програм-прикладів.
5. Створити власну програму (згідно з варіантом).
6. Написати makefile, вiдкомпiлювати та запустити програму. Пояснити отримані результати.
7. Дати вiдповiдi на контрольнi запитання.
8. Завершити роботу Midnight Commander (F10).
9. Вийти із системи (logout).
Компіляція виконується за допомогою gcc. Результатом компіляції є готовий файл для запуску.
На рис.1 показаний результат виконання компіляції програми.
Рис. 1 Виконання компіляції файлів shmem1.c і shmem.c
На рис. 2 показаний хід виконання запущеної програми shmem.
Рис. 2 Виконання shared-memory
Код :
shmem.c
#include <unistd.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/wait.h>
#include <stdio.h>
void main(void)
{
int i, shared, childPID, status;
char par1[5], *shmemptr=0;
printf("Parent: My PID=%d.\n", getpid());
if((shared=shmget(IPC_PRIVATE,4096,0xfff))==-1)
{
fprintf(stderr,"Can't allocate the shared memory segment.\n");
exit(1);
}
printf("Parent: shared memory segment has been allocated (4Kb=1Page).\n");
if((long)(shmemptr=shmat(shared,shmemptr,0))==-1)
{
fprintf(stderr,"Can't attach the shared memory segment.\n");
exit(1);
}
printf("Parent: shared memory segment has been attached at 0x%08lX.\n", (unsigned long)shmemptr);
printf("Parent: putting 100 chars to the attached segment:\n");
for(i=0;i<100;i++)
*(shmemptr+i)=i;
for(i=0;i<100;i++)
printf(" %d",*(shmemptr+i));
printf("\n");
if((childPID=fork())==-1)
{
fprintf(stderr,"Can't fork for the child.\n");
exit(1);
}
else
{
if(childPID==0)
{
sprintf(par1,"%d",shared);
if(execl("./shmem1","shmem1",par1,0)==-1)
{
fprintf(stderr,"Can't execute the external child.\n");
exit(1);
}
}
else
{
wait(&status);
if(shmdt(shmemptr)==-1)
{
fprintf(stderr,"Can't detach the shared memory segment.\n");
exit(1);
}
printf("Parent: shared memory segment has been detached.\n");
if(shmctl(shared,IPC_RMID,(struct shmid_ds*)&shared)==-1)
{
fprintf(stderr,"Can't delete the shared memory segment.\n");
exit(1);
}
printf("Parent: shared memory segment has been destroyed.\n");
exit(0);
}
}
}
shmem1.c
#include <unistd.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/wait.h>
#include <stdio.h>
#include <stdlib.h>
void main(int argc, char *argv[])
{
int i, shared;
char *shmemptr=0;
if(argc!=2)
{
fprintf(stderr,"Missing argument was detected.\n");
exit(1);
}
shared=atoi(argv[1]);
printf("EChild: My PID=%d.\n", getpid());
if((long)(shmemptr=shmat(shared,shmemptr,0))==-1)
{
fprintf(stderr,"Can't attach the shared memory segment.\n");
exit(1);
}
printf("EChild: shared memory segment has been attached at 0x%08lX.\n",(unsigned long)shmemptr);
printf("Echild: getting 100 chars from the attached segment:\n");
for(i=0;i<100;i++)
printf(" %d",*(shmemptr+i));
printf("\n");
if(shmdt(shmemptr)==-1)
{
fprintf(stderr,"Can't detach the shared memory segment.\n");
exit(1);
}
printf("EChild: shared memory segment has been detached.\n");
exit(0);
}
Висновок: виконуючи дану лабораторну роботу я засвоїв принципи комунікації процесів через пам'ять, що розділяється між процесами.