Shared library with acces to shared memory.


 
Thread Tools Search this Thread
Top Forums Programming Shared library with acces to shared memory.
# 1  
Old 06-18-2012
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 requirement, the access to the variables should be as quick as posible, which means that variables should be load in memory and made available to the libray.

I think I can create a program using IPC shared memory (shmget functions) to create a shared memory region available to the process using the library.
This process would read a file with the variables and would write them in the shared memory.
As I have read, one you create the shared memory, the process can be stopped and the region should be still available to other process.
Also, the progam would be executed to apply changes in the configuration file, changing the shared memory.
What do you think about this solution? Is this feasible?

I have also read about mmap as a modern solution? Would you recommend it?

Thank you very much for your comments.
# 2  
Old 06-18-2012
Is this homework?
# 3  
Old 06-18-2012
No, it isn't.
In fact, I am asking because my experience in POSIX is based on homework some years ago. For that reason I would thank to have some feedback about IPC or other possible options.

It is a basic project, but it needs to be as quick and reliable as possible.
Also, it will run on Solaris 10, so the deployment could be difficult.
# 4  
Old 06-18-2012
I'd use mmap rather than shm, since this would create an actual file that could be shared, and would be persistent across reboots. The contents of the file would effectively be memory.

How to do it depends on how you want to do it, there's no "create variable inside file" system call. You'd be building your own data structure and access methods. You might want to employ read-write locks for speed instead of global locks.
# 5  
Old 06-18-2012
Thanks Corona for your opinion.

I have been reading about mmap and I have understood
that you need a process running to keep the file in-memory. I have been doing some testing and wiht 'shmget' I can share memory and when the process stops the shared memory is already available. Am I right?

I like the idea of a process which makes the memory available for the first time and does not need to be running later. Also, this operation could be delegated to the own library at the first time it is called. Is this posible using mmap?
# 6  
Old 06-18-2012
Quote:
Originally Posted by iamjag
Thanks Corona for your opinion.

I have been reading about mmap and I have understood
that you need a process running to keep the file in-memory.
Do not try to outsmart the operating system. Whether anything is in-memory is up to it -- things will get paged out at need. This includes shm segments too, so having it "purely in ram" is an illusion. Things which are frequently used will stay in memory.

Besides, with mmap, you get a file. With shm, you don't -- reboot and it's gone forever.

mmap may be actually more efficient since it doesn't need to back it with swap, only with file.
Quote:
I like the idea of a process which makes the memory available for the first time and does not need to be running later. Also, this operation could be delegated to the own library at the first time it is called. Is this posible using mmap?
Do not try to outsmart the operating system. Whether anything is in-memory, be it code or data, is up to it. There are reasons for this. Just dumping everything into memory isn't always for the best.

On some systems you can tell mmap to preload the data, or you can mlock() the segment you want to keep in, but this is generally not necessary -- especially when the amount of data isn't huge. Frequeqntly-used data will stay in memory.

If the amount of data is huge, you don't want it all in memory, only the frequently used bits which will actually fit, for efficiency reasons. Large database systems often rely on mmap and the system deciding intelligently which things belong in memory.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Add shared members from library to same library in a different directory

I'm trying to install libiconv to AIX 7.1 from an rpm off of the perzl site. The rpm appears to install but I get this error message. add shr4.o shared members from /usr/lib/libiconv.a to /opt/freeware/lib/libiconv.a add shr.o shared members from /usr/lib/libiconv.a to ... (5 Replies)
Discussion started by: kneemoe
5 Replies

2. UNIX for Dummies Questions & Answers

Shared static library

Hello Please what does mean shared static library and LD-Preload? Thank you (3 Replies)
Discussion started by: chercheur857
3 Replies

3. UNIX for Dummies Questions & Answers

Which sections of a shared library should be loaded in the physical memory?

Each shared library may contain sections with allocatable flag as below: ... .hash .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_d .rel.dyn .rel.plt .plt ... My questions is that: among above sections, which of them should be loaded in the physical memory by run-time linker... (3 Replies)
Discussion started by: Dongping84
3 Replies

4. Programming

Makefile shared library g++

I'm having trouble with my makefile, I'm trying to code a shared library to be used by another program *EDIT* Found the solution: CC = g++ MODULES= readconfig.o ReadConfigLib.o OBJECTS= RCLOBJECTS= ReadConfigLib.cpp readconfig.cpp configDefinitions.h readconfig.h ReadConfigLib.h... (0 Replies)
Discussion started by: james2432
0 Replies

5. Shell Programming and Scripting

How to change a Makefile from building static library to shared library?

Hi: I have a library that it only offers Makefile for building static library. It built libxxx.a file. How do I in any way build a shared library? (either changin the Makefile or direct script or command to build shared library) Thanks. (1 Reply)
Discussion started by: cpthk
1 Replies

6. 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

7. 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

8. UNIX for Advanced & Expert Users

shared library

What is the primary difference between static library and dynamic library? and how to write static shared library? (1 Reply)
Discussion started by: areef4u
1 Replies

9. 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

10. Programming

Shared Library

hello all I want to work in shared libraries how can i work in Linux Environment ? (2 Replies)
Discussion started by: rajashekaran
2 Replies
Login or Register to Ask a Question