공유 메모리 프로 세 스 통신

5517 단어 공유 메모리
참고 주소:http://www.ibm.com/developerworks/cn/linux/l-ipc/part5/index1.html?ca=drs-
main.c
/*-------------map_normalfile1.c-----------*/
#include <sys/mman.h>
#include <sys/types.h>
#include <fcntl.h>
#include <unistd.h>
typedef struct{
char name[4];
int age;
}people;
main(int argc, char** argv) // map a normal file as shared mem:
{
int fd,i;
people *p_map;
char temp;

fd=open(argv[1],O_CREAT|O_RDWR|O_TRUNC,00777);
lseek(fd,sizeof(people)*5-1,SEEK_SET);
write(fd,"",1);

p_map = (people*) mmap( NULL,sizeof(people)*10,PROT_READ|PROT_WRITE,
MAP_SHARED,fd,0 );
close( fd );
temp = 'a';
for(i=0; i<10; i++)
{
temp += 1;
memcpy( ( *(p_map+i) ).name, &temp,2 );
( *(p_map+i) ).age = 20+i;
}
printf(" initialize over
");
sleep(10);
munmap( p_map, sizeof(people)*10 );
printf( "umap ok
" );
}

 
client.c
/*-------------map_normalfile2.c-----------*/
#include <sys/mman.h>
#include <sys/types.h>
#include <fcntl.h>
#include <unistd.h>
typedef struct{
char name[4];
int age;
}people;
main(int argc, char** argv) // map a normal file as shared mem:
{
int fd,i;
people *p_map;
fd=open( argv[1],O_CREAT|O_RDWR,00777 );
p_map = (people*)mmap(NULL,sizeof(people)*10,PROT_READ|PROT_WRITE,
MAP_SHARED,fd,0);
for(i = 0;i<10;i++)
{
printf( "name: %s age %d;
",(*(p_map+i)).name, (*(p_map+i)).age );
}
munmap( p_map,sizeof(people)*10 );
}

 
Makefile
all:main
main:
gcc -g -Wall -O0 main.c -o main

client:
gcc -g -Wall -O0 client.c -o client

clean:
rm *.o main client

 
각각 두 프로그램 을 실행 가능 한 파일 map 로 컴 파일 합 니 다.normalfile 1 과 mapnormalfile 2 후 한 터미널 에서 먼저 실행 합 니 다./mapnormalfile2 /tmp/test_shm,프로그램 출력 결 과 는 다음 과 같 습 니 다.
initialize over

umap ok


 
맵normalfile 1 에서 initialize over 를 출력 한 후 umap ok 을 출력 하기 전에 다른 터미널 에서 map 를 실행 합 니 다.normalfile2 /tmp/test_shm,다음 과 같은 출력 이 발생 합 니 다(공간 을 절약 하기 위해 출력 결 과 는 약간 정 리 된 결과 입 니 다).
name: b	age 20;	name: c	age 21;	name: d	age 22;	name: e	age 23;	name: f	age 24;

name: g	age 25;	name: h	age 26;	name: I	age 27;	name: j	age 28;	name: k	age 29;


 
맵normalfile 1 출력 umap ok 후 map 실행normalfile 2 는 다음 과 같은 결 과 를 출력 합 니 다.
name: b	age 20;	name: c	age 21;	name: d	age 22;	name: e	age 23;	name: f	age 24;

name:	age 0;	name:	age 0;	name:	age 0;	name:	age 0;	name:	age 0;

좋은 웹페이지 즐겨찾기