⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 producer_read.cpp

📁 ACE自适配通信环境(ADAPTIVE Communication Environment)是可以自由使用、开放源码的面向对象(OO)框架(Framework)
💻 CPP
字号:
// producer_read.cpp,v 4.11 2005/01/24 18:29:09 mcorino Exp#include "ace/OS_main.h"#include "ace/SPIPE_Addr.h"#include "ace/SPIPE_Connector.h"#include "ace/Log_Msg.h"#include "ace/OS_NS_stdlib.h"ACE_RCSID(SPIPE_SAP, producer_read, "producer_read.cpp,v 4.11 2005/01/24 18:29:09 mcorino Exp")#if defined (ACE_HAS_STREAM_PIPES)#include "shared.h"const int DEFAULT_SIZE = 8 * 1024;const int DEFAULT_COUNT = 100;intACE_TMAIN (int argc, ACE_TCHAR *argv[]){  int  size = argc > 1 ? ACE_OS::atoi (argv[1]) : DEFAULT_SIZE;  int  iterations = argc > 2 ? ACE_OS::atoi (argv[2]) : DEFAULT_COUNT;  char *buf = new char[size];  if (argc > 3)    rendezvous = argv[3];  ACE_SPIPE_Stream cli_stream;  ACE_SPIPE_Connector con;  int i;  if (con.connect (cli_stream, ACE_SPIPE_Addr (rendezvous)) == -1)    ACE_ERROR_RETURN ((LM_ERROR, "%p\n", rendezvous), -1);  for (i = 0; i < size; i++)    buf[i] = 'a';  for (i = 0; i < iterations; i++)    if (cli_stream.send (buf, size) != size)      ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "putmsg"), -1);  if (cli_stream.close () == -1)      ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "close"), -1);  return 0;}#else#include <stdio.h>int ACE_TMAIN (int, ACE_TCHAR *[]){  ACE_ERROR_RETURN ((LM_ERROR, "this feature is not supported"), -1);}#endif /* ACE_HAS_STREAM_PIPES */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -