- 论坛徽章:
- 0
|
[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?
|
|