oneway_buffering.mpc

来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· MPC 代码 · 共 32 行

MPC
32
字号
// -*- MPC -*-
// Oneway_Buffering.mpc,v 1.9 2003/12/23 21:04:50 dhinton Exp

project(*Server): messaging, taoexe, portableserver {
  Source_Files {
    Oneway_Buffering.cpp
    server.cpp
  }  
}

// These next two projects depend on *Server (the above project)
// due to the possibility of parallelism for the GNUACE type.  If
// -j 2 or more is used to build this project, multiple instances
// of tao_idl are invoked for Test.idl.  They begin to overwrite the
// generated source files and cause problems for the processes that
// have gone on to build the generated files. By depending on *Server,
// only one process is allowed to compile Test.idl and thus the build
// succeeds.
project(*Client): messaging, taoexe, portableserver {
  Source_Files {
    TestC.cpp
    client.cpp
  }  
}

project(*Admin): messaging, taoexe, portableserver {
  Source_Files {
    Oneway_Buffering_Admin.cpp
    admin.cpp
  }  
}

⌨️ 快捷键说明

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