Sponsored Content
Full Discussion: fork() and IPC
Top Forums Programming fork() and IPC Post 2701 by Neo on Wednesday 30th of May 2001 03:57:45 PM
Old 05-30-2001
The primary way to share data between processes using UNIX IPCs are:

(1) Shared memory;

(2) Sockets:

There are other UNIX IPCs including

(3) Message Queues.

(4) Semaphores;

(5) Signals.

Your best best (for IPCs) is to use shared memory segments, based on your post. You might need to use semaphores to insure that the shared memory operations are atomic.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Ipc

I have a parent that is passing data to child A and then child A has to process it and pass to child B. I am able to pass the data to child A but am not able to pass it to child B. Child B seems to only be receiving the last data instead of the whole data. I saw one example in a book but it uses... (1 Reply)
Discussion started by: scmay
1 Replies

2. UNIX for Dummies Questions & Answers

Ipc Details

hai, i am doing my masters degree in computers.please any one tell me about fork(),semaphores,mutex,messaging queues,messaging using pipes ,and msgget(),msgrecv() funtions in ipc programming . i have exam on that i have a book but in that they not given clearly. hope u will ... (2 Replies)
Discussion started by: G.Vishnuvardhan
2 Replies

3. Programming

[C] Problem with IPC

Hi! I'm trying to write this program: in my intentions it should get a message and send it to a second process (pid_upost), then to a third process (pid1, pid2, pid3, depending on the choice made when a new message is inserted). This program should write the message in a file (message1, message2 or... (1 Reply)
Discussion started by: Kaminski
1 Replies

4. Programming

IPC with PIPE

Hi guys, I'm new to Linux and Unix I have just simple code . But I don't know why it doesn't work .. But, the outputfile is Blank.. I don't understand why.. Please help me.. Thank you very much P.S: sorry, I don't know how to edit this post clearly.. it's hard to read.. Please try.. (2 Replies)
Discussion started by: thanh_sam_khac
2 Replies

5. Solaris

errors on Netra-440: "IPC Warning: ipc: tcp_protocol: bad magic number"

I was asked to look into a problem with a Sun Netra 440 in another department. On the server in question, the relevant 'uname -a' information is, "SunOS host1 5.9 Generic_118558-16 sun4u sparc SUNW,Netra-440". That information aside, while the other admin is logged into the ALOM, these errors are... (0 Replies)
Discussion started by: Borealis
0 Replies

6. Programming

IPC Mechanisms

Hi! I wanted to know the advantages / disadvantages of different IPC mechanims such as sockets, pipes (unnamed) , shared memory & message queues. Pipes for example i hear are fast , but are difficult to debug as compared to sockets. Can you guys please name some situations where one is... (4 Replies)
Discussion started by: _korg
4 Replies

7. Programming

IPC-using fork() in a loop

I need to write a program which creates some n number of processes first and also creates a fifo for each of them, then it connects to the server and.. I tried creating these processes with fork() in a for loop but it doesn't print out what i write inside the child.. for(int count = 0; count... (7 Replies)
Discussion started by: saman_glorious
7 Replies

8. Programming

Best IPC mechanism to be used

Suppose I have 5 independent process divided in two imaginay sets: set1 set2 --------------------- p1 p3 | | p2 p4 | p5 The processes inside each set communicate mutually quite often. I mean p1 and p2 communicate mutually quite often Similarly p3, p4 and p5 communicate mutually... (2 Replies)
Discussion started by: rupeshkp728
2 Replies

9. HP-UX

IPC settings on HP-UX

Hi Experts, Need your help for checking te interprocess communications settings on HP-UX box. Using ipcs command I am able to view Message queue,semapohores etc, but from that output I m not able to understand how to determine if there is any issue with ipc settings and how to resolve that? (1 Reply)
Discussion started by: sai_2507
1 Replies

10. Shell Programming and Scripting

help with IPC + thread

Actually i am thinking of some usefull application that involves both IPC and pthreads.But i am not quite sure what type of application involves both these together :confused:. Anyways i am now working on creating a simple featured file manager that can do the following: Display file name and... (2 Replies)
Discussion started by: ronmaximus
2 Replies
PVM_SHMD(1PVM)							  PVM Version 3.4						    PVM_SHMD(1PVM)

NAME
pvm_shmd - PVM shared memory(2) daemon SYNOPSIS
pvm_shmd [ -options ] [ hostfile ] & DESCRIPTION
Pvm_shmd is a daemon process which maintains and handles the usage of shared memory resources (memory segments, semaphores, message queues) on a particular PVM host. One pvm_shmd must run on each host in a virtual machine that wants to use the shmd shared memory message passing layer. The shmd message passing layer allows local processes to a host to use shared memory for message passing on that host ONLY. See the shmd directory README for further notes and restrictions. The daemon can be started manually as with any other PVM task. Only one pvm_shmd can be active per host. If the pvm_shmd detects another pvm_shmd it will shutdown. The pvm_shmd can be killed from the PVM console by using the reset command. Local and remote pvm_shmds can also be started from the PVM console program pvm. The name of the daemon executable is pvm_shmd. Shared Resource Usage The pvm_shmd will attempt to create upto MAXSEG shared memory segments of upto MAXPAGES memory pages in size. The size of each memory page is architecture dependent(see getpagesize(3C)). The segments are then numbered 0..N-1 where N is the number of segments created. The first segement(0) has the shared memory control structure placed in its head. This structure allows alien processes to located the other shared memory segments and any required controlling information. The message passing layer, allocates memory from these segments asynchronously without any interaction with the pvm_shmd using semaphores to protect data during updates to any associated structures. For each segment there is an associated page map of which processes have cur- rently locked a page. Each page map for a segment has a separate semaphore protecting it. The semaphores are accessed with the SEM_UNDO flag set so that if a process holding a semaphore should die, the OS (should) reset the semaphore automatically, thus allowing any wait- ing/blocked processes to continue. The pvm_shmd only maintains the segments and their allocation page map(s). Thus if a process allocated pages in a segment and then exits, it is the pvm_shmd that detects this and then frees the allocated pages. The pvm_shmd can have its status checked at any time by using the pvm_shmd_stat process to kick it into reporting onto either stdio or the pvm log file (pvml.uid) its internal state. The shared memory and all associated processes can be cleared by sending the pvm_shmd a HUP signal. Sending the pvm_shmd a TERM signal will just cause it to clear any shared resources and then exit. The pvm_shmd cannot catch the KILL signal. If the pvm_shmd is killed without clearing all of its shared resources these can be cleared by calling ipcfree which resides in the pvm3/lib directory. Message Passing using SHMD The pvm_shmd handles resources that are used by special versions of pvm_psend() and pvm_precv() stored in the libpvmshmd.a library. Thus to use these facilities, applications have to link to this library instead of the usual libpvm3.a library. OPTIONS
The following options may be specified on the command line when starting the pvm_shmd: -debug=level Sets the pvm_shmd debug level. Used to debug the pvm_shmd or libpvmshmd (not intended to be used to debug application programs). -maxsegs=maxsegs Sets the maximum number of segments that the pvm_shmd can create. This is used to over-ride the compiled in value from shmd.h. Note that the value cannot be above the MAXSEGS in the shmd.h file. -maxpages=maxpages Sets the maximum segment size to maxpages pages of memory. This value cannot be above the compiled value MAXPAGES in shmd.h or the actual OS defined limit. NOTES
Remember that pvm_shmd allocated memory from the VM available on the machine. Allocating more segements improves performance as there is less sharing of segments (semaphores for their page maps). Although you must remember to leave some memory available for normal program and OS system usage, as the pvm_shmd allocated memory is *ONLY* used for message passing. FILES
$PVM_ROOT/lib/$PVM_ARCH/pvm_shmd PVM shared memory daemon executable $PVM_ROOT/shmd/shmd.h Shared Memory hard limits header file /tmp/pvml.uid Pvmd runtime error log SEE ALSO
pvm(1PVM), pvmd(1PVM), getpagesize(3C), ipcs(1), msgctl(2), semctl(2), shmctl(2), signal(5) G.E.Fagg 11 March, 1999 PVM_SHMD(1PVM)
All times are GMT -4. The time now is 03:19 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy