How to interpret the shared memory key


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users How to interpret the shared memory key
# 1  
Old 01-14-2010
How to interpret the shared memory key

I'm facing a problem interpreting the shared memory key on an AIX machine.

(1) I go to a property file and I see the following:
Code:
shm_key = "119112066"

(2) So I now go the command prompt and do this:
Code:
ipcs -m | grep 119112066

And, I do not find it. So what I do is to run the ipcs -m command again and I now see the keys in this format:
Code:
....
Shared Memory:
m   1048576 0xffffffff D-rw-------     root   system
m  55574874 0x01051165 --rw-rw-rw-    s2sys    staff
...

When I do a ps -eaf | grep 119112066, I see a bunch of processes like (note the shmkey argument as you scroll right)
Code:
....
 devtest 8233052 8491180   0   Jan 12  pts/9  0:01 ./TcpMgrPath/RtrBloTcpServer -netid WPB -ppid 8491180 -unit 0 -type BLOTCPSERV -shmkey 119112066 -lport 29311 -lfd 3 -lqlen 257 -mgr_cfg TcpMgr.cfg 
....

So my question is, how to interpret 119112066 in this hexadecimal 0x01051165 language? What might I be missing? Because what I eventually want to do is to create my own shared memory key and make sure I don't mess up anybody else's keys.

Thanks,
-Vijay

Last edited by vijaygade; 01-14-2010 at 10:39 PM..
# 2  
Old 01-15-2010
Hexadecimal key displayed in the output of the command 'ipcs -m' is the hexadecimal value of the shm_key you have given to create the shared memory. Here I think you are pointing to the incorrect shared memory hex value.

For your reference, Here is the program, which will create shared memory. and its reference ids in ipcs -m command. Hope this will clarify your question.


Code:
/* Program to create Shared memory */
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <stdio.h>
#include <stdlib.h>

main()
{
key_t key; 
int shmflg; 
int shmid; 
int size; 

key = 119112067;
size =1024;

if ((shmid = shmget (key, size, IPC_CREAT)) == -1) {
   printf("shmget: shmget failed");
exit(1);
} else {
   printf("Shmid ->%d<-\n", shmid);
  
}
}

This program creates the Shared memory with the key 119112066, and returns the shmid.
Code:
# cc shm.c
[root@btovm918 utils]# ./a.out
Shmid ->400261138<-
Its success[root@btovm918 utils]# ipcs -m | grep 400261138
0x07198182 400261138  root      0          1024       0

Code:
# bc
bc 1.06
Copyright 1991-1994, 1997, 1998, 2000 Free Software Foundation, Inc.
This is free software with ABSOLUTELY NO WARRANTY.
For details type `warranty'.
obase=16
119112066
7198182

So 0x07198182 is hex value of the key 119112066..
# 3  
Old 01-15-2010
Thank you. That certainly did help.

-Vijay
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Shared library with acces to shared memory.

Hello. I am new to this forum and I would like to ask for advice about low level POSIX programming. I have to implement a POSIX compliant C shared library. A file will have some variables and the shared library will have some functions which need those variables. There is one special... (5 Replies)
Discussion started by: iamjag
5 Replies

2. UNIX for Advanced & Expert Users

Shared Memory

Hi, Using ipcs we can see shared memory, etc.. details. How can I add/remove shared memory(command name)? Thanks, Naga:cool: (2 Replies)
Discussion started by: Nagapandi
2 Replies

3. Programming

Shared memory for shared library

I am writing a shared library in Linux (but compatible with other UNIXes) and I want to allow multiple instances to share a piece of memory -- 1 byte is enough. What's the "best" way to do this? I want to optimize for speed and portability. Obviously, I'll have to worry about mutual exclusion. (0 Replies)
Discussion started by: otheus
0 Replies

4. Programming

Shared memory in shared library

I need to create a shared library to access an in memory DB. The DB is not huge, but big enough to make it cumbersome to carry around in every single process using the shared library. Luckily, it is pretty static information, so I don't need to worry much about synchronizing the data between... (12 Replies)
Discussion started by: DreamWarrior
12 Replies

5. Programming

memory sharing - not shared memory -

hi, this is the problem: i want to swap a linked list between 4 processes (unrelated), is there any way i can do that just by sending a pointer to a structure? //example typedef struct node { int x; char c; struct node *next; } node; or i should send the items ( x,c ) by... (9 Replies)
Discussion started by: elzalem
9 Replies

6. Programming

help with shared memory

what i want to do is have an int that can been written into by 2 processes but my code doesn't seem to work. #include <sys/types.h> #include <sys/ipc.h> #include <sys/sem.h> #include <sys/shm.h> #include<stdio.h> #define KEY1 (1492) int main() { int shmid; volatile int * addr;... (6 Replies)
Discussion started by: ddx08
6 Replies

7. Linux

all about shared memory

Hi all :confused: , I am new to unix.I have been asked to implement shared memory in user's mode.What does this mean?What is the difference it makes in kernel mode and in users mode?What are the advantages of this impemenation(user's mode)? And also i would like to know why exactly shared... (0 Replies)
Discussion started by: vijaya2006
0 Replies

8. UNIX for Advanced & Expert Users

Shared memory shortage but lots of unused memory

I am running HP-UX B.11.11. I'm increasing a parameter for a database engine so that it uses more memory to buffer the disk drive (to speed up performance). I have over 5GB of memory not being used. But when I try to start the DB with the increased buffer parameter I get told. "Not... (1 Reply)
Discussion started by: cjcamaro
1 Replies

9. Cybersecurity

IPSec - VPN using shared key

Hello! I have some trouble trying to configure a VPN with two gateways. One of them uses IPSec with a single key, 256bits length, specified in /etc/ipsec.secrets. As FreeSwan manual page says, if i put esp=3des-md5-96, will be used a "64bit IV key (internally generated), a 192bit 3des ekey and a... (3 Replies)
Discussion started by: eNTer
3 Replies

10. Programming

Shared memory

Dear Reader, Is is necessary to attach / dettach the shared memory segments for write operations , if more than one program is accessing same shared memory segments.. I have used semaphore mutex and still I'm getting segmentation fault when I write to the segment when other program is already... (1 Reply)
Discussion started by: joseph_shibu
1 Replies
Login or Register to Ask a Question