文件名称:lab3
- 所属分类:
- Linux/Unix编程
- 资源属性:
- [C/C++] [源码]
- 上传时间:
- 2012-11-26
- 文件大小:
- 2kb
- 下载次数:
- 0次
- 提 供 者:
- Chu***
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
The subject of this programming assignment is using Linux/UNIX system calls dealing
with processes and pipes.-The subject of this programming assignment is using Linux/UNIX system calls dealing
with processes and pipes. You are to write a C program that implements a simple client-
server system, where the server does centralized logging of messages from multiple clients.
The program is to create a set of subprocesses (children) using fork. The parent will function
as the logging server, and the children will function as clients, which send messages to the
server to be logged in a single log file. The client processes will use a pipe to send simple
messages to the server. Each will send a certain number of messages, at random intervals,
and then terminate. The server process will read all of the messages as sent, write them to
the log file, and eventually terminate after all the clients have terminated.
with processes and pipes.-The subject of this programming assignment is using Linux/UNIX system calls dealing
with processes and pipes. You are to write a C program that implements a simple client-
server system, where the server does centralized logging of messages from multiple clients.
The program is to create a set of subprocesses (children) using fork. The parent will function
as the logging server, and the children will function as clients, which send messages to the
server to be logged in a single log file. The client processes will use a pipe to send simple
messages to the server. Each will send a certain number of messages, at random intervals,
and then terminate. The server process will read all of the messages as sent, write them to
the log file, and eventually terminate after all the clients have terminated.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
lab3.c