Login | Register    

This feature requires you to login first. If you do not have an account yet, please click Register to create free account. Register

C reference:
  Enter the mail Id:    X
     
Creating ``pipelines'' with the C programming language can be a bit more involved than our simple shell example. To create a simple pipe with C, we make use of the pipe() system call. It takes a single argument, which is an array of two integers,
2010-05-06
Viewed
 
 
146
0
  Enter the mail Id:    X
     
shm_server.c, shm_client.c We develop two programs here that illustrate the passing of a simple piece of memery (a string) between the processes if running simulatenously:
2010-01-11
Viewed
 
 
131
1
  Enter the mail Id:    X
     
* What Is Linux? * Who created Linux? * Where can I download Linux? * How do I Install Linux?
2009-11-24
Viewed
 
 
101
1
  Enter the mail Id:    X
     
Connectionless Server and Client program. udpserver.c and udpclient.c
2009-10-29
Viewed
 
 
119
0
  Enter the mail Id:    X
     
The client server model Most interprocess communication uses the client server model. These terms refer to the two processes which will be communicating with each other. One of the two processes, the client, connects to the other process, the server, typically to
2009-10-11
Viewed
 
 
118
0
  Enter the mail Id:    X
     
The fork() system call will spawn a new child process which is an identical process to the parent except that has a new system process ID. The process is copied in memory from the parent and a new process structure is assigned by the kernel. The return value of the function is
2009-09-18
Viewed
 
 
161
0
  Enter the mail Id:    X
     
Hi all I have been asked to: Write a C program that will create a child process which is a simple copy of the parent process and each should report their existence by outputting its own PID and its PPID to the screen.
2009-07-05
Viewed
 
 
159
0
  Enter the mail Id:    X
     
System V IPC is meant to provide and entire IPC mechanism. As such, it is more heavyweight than BSD mmap, and provides three methods of communication: message queues, semaphores, and shared segments. Like BSD mmap, System V IPC uses files to identify shared segments.
2009-07-03
Viewed
 
 
55
0
  Enter the mail Id:    X
     
Shared Memory is an efficeint means of passing data between programs. One program will create a memory portion which other processes (if permitted) can access.
2009-07-03
Viewed
 
 
71
0
  Enter the mail Id:    X
     
Hi guys, I'm writing a program using shared memory segments and I have the following problem: first of all, I create a key, get a memory segment and then attach it (I will post only the necessary parts of code):
2009-07-03
Viewed
 
 
124
0

If you want submit any links, articles, programs, projects to this website should login first
Submit Link
Language: C
Search key: eg,c interview question
Explanation:
URL:
Web site contents © Copyright 2007, All rights reserved.