mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-07 01:06:45 +08:00
20 lines
391 B
C++
20 lines
391 B
C++
#include <iostream>
|
|
#include <string>
|
|
|
|
#include "libipc/ipc.h"
|
|
|
|
namespace {
|
|
|
|
constexpr char const name__[] = "ipc-msg-que";
|
|
constexpr char const mode_s__[] = "s";
|
|
constexpr char const mode_r__[] = "r";
|
|
|
|
using msg_que_t = ipc::chan<ipc::relat::single, ipc::relat::single, ipc::trans::unicast>;
|
|
|
|
} // namespace
|
|
|
|
int main(int argc, char ** argv) {
|
|
if (argc < 2) return 0;
|
|
return 0;
|
|
}
|