简单的,两个不同进程间的共享内存通信(大小写转换)

/*shmdata.c*/
#define TEXT_SZ 2048

struct shared_use_st
{
    int written;
    char text[TEXT_SZ];
};
/*shmread.c*/
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/shm.h>
#include "shmdata.c"
#include <string.h>


int main()
{
    int running = 1;
    void *shm = NULL;
    struct shared_use_st * shared;
    int shmid;
	int i;
    
    shmid = shmget((key_t)1234,sizeof(struct shared_use_st),0666|IPC_CREAT);

    if(shmid == -1)
    {
        fprintf(stderr,"shmget failed\n");
        exit(EXIT_FAILURE);
    }
    shm = shmat(shmid,0,0);
    if(shm == (void*)-1)
    {
        fprintf(stderr,"shmat failed\n");
        exit(EXIT_FAILURE);
    }
    printf("\n memary attached at %d\n",(int)shm);

    shared = (struct shared_use_st *)shm;
    shared->written = 0;
    while(running)
    {
        if(shared->written == 1)
        {
            printf("get string: %s\n",shared->text);
            sleep(rand()%3);
            shared->written = 2;
            if(strncmp(shared->text,"end",3) == 0)
                running = 0;
        }
        else if(shared->written == 2)
		{
			i = 0;
			while(shared->text[i] != '\n')
			{
	 			if(shared->text[i] >= 'A' && shared->text[i] <= 'Z')
				{
					shared->text[i] += 32;
				}
				i++;
			}
			shared->written = 3;
			printf("send string:%s\n",shared->text);
		}
		else
		{
			sleep(1);
		}
    }
    if(shmdt(shm) == -1)
    {
        fprintf(stderr,"shmdt failed\n");
        exit(EXIT_FAILURE);
    }
    if(shmctl(shmid,IPC_RMID,0) == -1)
    {
        fprintf(stderr,"stmctl failed\n");
        exit(EXIT_FAILURE);
    }
    
    exit(EXIT_SUCCESS);
    return 0;
}
/*shmwrite.c*/

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/shm.h>
#include "shmdata.c"
#include <string.h>

#define BUFFSIZE 2048

int main()
{
    int running = 1;
    void *shm = NULL;
    struct shared_use_st * shared = NULL;
    char buffer[BUFFSIZE + 1];
    int shmid;
    
    shmid = shmget((key_t)1234,sizeof(struct shared_use_st),0666|IPC_CREAT);

    if(shmid == -1)
    {
        fprintf(stderr,"shmget failed\n");
        exit(EXIT_FAILURE);
    }
    shm = shmat(shmid,0,0);
    if(shm == (void*)-1)
    {
        fprintf(stderr,"shmat failed\n");
        exit(EXIT_FAILURE);
    }
    printf("\n memary attached at %d\n",(int)shm);

    shared = (struct shared_use_st *)shm;
    //shared->written = 0;
    while(running)
    {
		if(shared->written == 0)
		{
			printf("send string:\n");
            fgets(buffer,BUFFSIZE,stdin);
            strncpy(shared->text,buffer,TEXT_SZ);
			shared->written = 1;
            if(strncmp(shared->text,"end",3) == 0)
                running = 0;
		}
		else if(shared->written == 3)
		{
			printf("get string:%s\n",shared->text);
			shared->written = 0;
		}
		else
		{
			sleep(1);
		}
      
    }
    if(shmdt(shm) == -1)
    {
        fprintf(stderr,"shmdt failed\n");
        exit(EXIT_FAILURE);
    }
   /* if(shmctl(shmid,IPC_RMID,0) == -1)
    {
        fprintf(stderr,"stmctl failed\n");
        exit(EXIT_FAILURE);
    }*/
    sleep(2);
    exit(EXIT_SUCCESS);
    return 0;
}







  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值