免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4097 | 回复: 0
打印 上一主题 下一主题

[HP-UX]Why does shmat always return negative value? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2002-05-13 19:06 |只看该作者 |倒序浏览
[HP-UX B.11.00]

I am running the following program to get the address of shared memory, but always get a negative value. The I check the errno, but find that it is always zero. The source codes are listed as follows:

char *SHM_list[MAX_KEY + 1];

void shmem( key, size, addr, func, tracepoint )
        int key, size;
        char **addr, *func;
        int tracepoint;
{
        char buf[ 256 ];
        int shmid, x, perms=0;

        Gf_curfile_num = -1;       
        if( SHM_list[key] )
        {
                *addr = SHM_list[key];/* already attached */
                  printf(\"1: key=%d, *addr=%d\\n\",
                        key, *addr);
        }
        else
        {
                /* get the identifier to segment */
                while( (shmid = shmget( (key_t)key, (size_t)size,
                        (int)(0777 | IPC_CREAT))) < 0)
                {
                        if( errno != EINTR )
                          {                                             exit(-1);                                                                  }
                          lperror(\"2: errno=%d\\n\", errno);
                }
                  lperror(\"3: errno = %d, shmid = %d\\n\", errno, shmid);
                errno = 0;               
                if( (key == SHM_VEH && (int)getuid() != FLEETMAN) ||
                   (key == SHM_EVENTS && (int)getuid() != FLEETMAN) ||
                   (key == SHM_ZONE && (int)getuid() != ADMAN)  ||
                   (key == SHM_GPS && (int)getuid() != GPS_PROC)  ||
                   (key == SHM_COMBAT && (int)getuid() != ADMAN) ||
                   (key == SHM_BOUTSTAT && (int)getuid() != BO) ||                /* Normal */
                   (key == SHM_BINSTAT && (int)getuid() != BI) ||
                   (key == SHM_BOUTCOMM && (int)getuid() != BO) ||
                   (key == SHM_UAD_ADDRESS && (int)getuid() != UAD_ADDR) ||
                   /*(key == SHM_CHANSTAT && (int)getuid() != BO) ||*/
                   (key == SHM_BINCOMM && (int)getuid() != BI) ||
                   ((key == SHM_PHONESTAT) && ((int)getuid() != BI)) )
                {
                        perms = SHM_RDONLY;
                          printf(\"4: key=%d, uid=%d, perms=%d\\n\", key, getuid(), perms);
                }
                /* attach to process space */
                while( (long)(*addr = shmat( (int)shmid, (void *)0, (int)perms )) == -1 )
                {
                          if( errno != EINTR )
                          {                                                                                                                       
                                  exit(-1);                                                                        
                        }
                }
                  lperror(\"5: errno = %d, shmid = %d, *addr = %d\\n\", errno, shmid, *addr);
                errno = 0;               
                SHM_list[key] = *addr;/* for next time */
        }       
}

Then I get the following outcomes:

    3: errno = 0, shmid = 1548
    5: errno = 0, shmid = 1548, *addr = -1071194112

It seems that shmat works well, while shmat returns a negative value, but does not set the errno. I check the manual of shmat, and find the following description about return value:

RETURN VALUE
      shmat() returns the following values:

            n   Successful completion.  n is the data segment start address
                of the attached shared memory segment.
           SHM_FAILED
                Failure.  The shared memory segment is not attached.  errno
                is set to indicate the error.  The symbol SHM_FAILED is
                defined in the header <sys/shm.h>.  No successful return
                from shmat() will return the value SHM_FAILED.

Then I view /usr/include/sys/shm.h and get that SHM_FAILED = -1.

Who can help me to resolve the problem?



您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP