我是靠谱客的博主 激情犀牛,最近开发中收集的这篇文章主要介绍linux下编写c++程序,Linux下使用C/C++编写一个简单的消息处理程序,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

// all.h

// wenxy created in 2005/04/12,AM

// All copyright reserved.

#ifndef _ALL_H

#define _ALL_H

// ANSC C/C++

#include

#include

#include

#include

// linux

#include

#include

#include

#include

#include

// micro define

//#define OutErrStr(info) (printf("Error : %sn", info))

//#define OutErrInt(info) (printf("Error : %dn", info))

#define BUFF_SIZE 1024 * 1

#endif

// ----------------------------------------------------------------------------------

// main.c

#include "all.h"

// function

static int ChildProcessFun(void *pParam);

// struct

struct _PROCESS_PARAM

{

#define STR_1 "This is date on pipe."

#define DADA_LEN sizeof(STR_1)

char chBuff[BUFF_SIZE];

int nPipe[2];

pid_t nProcess;

};

int main()

{

printf("Run ...n");

struct _PROCESS_PARAM ProcessParam;

int nFlag = pipe(ProcessParam.nPipe);

if (nFlag == -1)

{

printf("Error: crrete pipe failed!n");

printf("------------------------------nn");

}

assert(ProcessParam.nPipe[0]);

assert(ProcessParam.nPipe[1]);

// create a child press

ProcessParam.nProcess = fork();

if (ProcessParam.nProcess < 0) /* create process failed */

{

printf("Error: create child process failed!n");

printf("------------------------------nn");

}

else if (ProcessParam.nProcess > 0) /* parent process */

{

printf("nNote:  in parent process ...n");

printf("New child process ID = %dn", ProcessParam.nProcess);

// write pipe

close(ProcessParam.nPipe[0]);

write(ProcessParam.nPipe[1],  STR_1, strlen(STR_1));

}

else /* child process */

{

if(ChildProcessFun(&ProcessParam) == 0)

{

printf("Child process exit ...n");

}

else

{

printf("Error: Child process dead lock ...n");

printf("------------------------------nn");

}

}

// close pipe

close(ProcessParam.nPipe[0]);

close(ProcessParam.nPipe[1]);

printf("parent process exit ...n");

return 0;

}

// child process funtion

static int ChildProcessFun(void *pParam)

{

struct _PROCESS_PARAM ProcessParam =

(struct _PROCESS_PARAM)

*(struct _PROCESS_PARAM *)pParam;

printf("Note: in child process ...n");

printf("The child process ID = %dn", ProcessParam.nProcess);

// read pipe

close(ProcessParam.nPipe[1]);

read(ProcessParam.nPipe[0], ProcessParam.chBuff, DADA_LEN);

ProcessParam.chBuff[DADA_LEN] = ''; /* good action */

printf("Read the pipe data: %sn", ProcessParam.chBuff);

printf("*********************************nn");

return 0;

}

/* end main.c ******************************************************* */

// -----------------------------------------------------------------------------------------------

# makefile

objets = main.o

rubbish = $(objets) main

main : main.o

g++ -o main main.o

main.o : main.c all.h

g++ -c main.c

.PHONY : clean

clean :

-rm $(rubbish)

# end makefile0b1331709591d260c1c78e86d0c51c18.png

最后

以上就是激情犀牛为你收集整理的linux下编写c++程序,Linux下使用C/C++编写一个简单的消息处理程序的全部内容,希望文章能够帮你解决linux下编写c++程序,Linux下使用C/C++编写一个简单的消息处理程序所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部