Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
2k views

System V shared memory in Python?

How can I make use of the shmat(), shmdt(), shmctl(), shmget() calls from Python? Are they hidden somewhere in the standard library? Update0 I'm after System V bindings that can be found in the ...
5
votes
1answer
230 views

Why does IPC::SysV->shmget respond with EINVAL?

I am currently running perl 5.8.8 on a server and I'm trying to install 5.14. I configured it to usethreads and use64bitint and otherwise the defaults it suggested. make ran without problems, but ...
4
votes
3answers
2k views

System V IPC vs POSIX IPC

What are the differences between System V IPC and POSIX IPC ? Why do we have two standards ? How to decide which IPC functions to use ?
4
votes
2answers
1k views

How to convert an existing Java application to a SYS V service (daemon)

I have a Java application, to start it I use java -jar myapp.jar To stop it I use CTRL+C. Now I need to convert that application to something that I can start with: /etc/init.d/myapp start ...
2
votes
2answers
109 views

Is there any possible way to change a memory location to a shared memory in C?

In c you can do shmid = shmget(SHMEM_KEY, sizeof(int*) * n , SHEMEM_MODE | IPC_CREAT); int* shmem = shmat(shmid, NULL, 0); to assign first given free memory space as a shared memory. Is there any ...
1
vote
1answer
102 views

Semaphore synchronization on value 0

Using SysV semaphores in a UNIX OS it is possible to implement an algorithm in which a process waits until the value of a semaphore reaches the value 0 (see man semop for details). Now, everybody ...
1
vote
1answer
194 views

System V Message Queue - Timed receive

Im using System V Message Queue, which does not have a "timed receive" function, like POSIX MQ. But now i need it (this timed receive func.). One can ask: "so why dont you use POSIX instead of Sys ...
0
votes
0answers
14 views

distributed application using sysV shared memory segments

I need a distributed application using sysV shared memory segments to evaluate a part of my linux kernel. Could anybody suggest me an application of this kind (a benchmark if possible but not ...
0
votes
0answers
58 views

Why IPC::SharedMem ignores KEY parameter in constructor?

I want to use a shared memory segment to publish the status of a Perl daemon, so other programs in the same system ( Linux 2.6 kernel ) can read the status and make a simple report. Other programs ...
0
votes
1answer
180 views

Ruby background process STDOUT is empty

I'm having a weird issue with a start-up script which runs a Sinatra script using the shell's "daemon" function. The problem is that when I run the command at the command line, I get output to STDOUT. ...
0
votes
0answers
169 views

IPC using System V Semaphores in Linux

I have an application that uses semaphores for inter-process communication. There is a parent application with multiple threads, each one with its own semaphore. One of those threads create a child ...
0
votes
2answers
108 views

Where do we really need a set of System v Semaphores?

Every time I read the description of semget: The semget() system call returns the semaphore set identifier associated with the argument key., I wonder where do we really need set of System V ...
0
votes
1answer
277 views

System V IPC msgrcv with timer Howto

We are using a System V message queue with the msgrcv function being called in blocking mode. We want to implement a timer on the blocking msgrcv function so that when the timer expires and we have ...