message queue - with boost lib
Program Lang./C++ 2016. 7. 11. 08:39네가 만든 message queue를 boost library로 바꿔봤다.
boost 예제를 조금 수정했는데, boost는 process 대상이고 난 thread로 변경했을 뿐이다.
동작은 네가 만든 것과 동일하다. 단지 message queue 상태 검사는 없다.
1. 소스트리
.
├── CMakeLists.txt
├── remove.sh
└── test.cpp
2. CMakeLists.txt 변경 사항.
cmake에서 기본적으로 관리하는 package에서 찾아서 링크 시켰다.
참고로 pkg-config를 쓰려면 pkg-config를 먼저 include하고 쓰면 된다.
아직 네가 잘 못해서 Mac에서는 find_package가 먹지 않는다.
3. 테스트 소스
'Program Lang. > C++' 카테고리의 다른 글
2. mpeg ts pat (program associate table) parser (0) | 2016.07.14 |
---|---|
1. mpeg sectoin parser (0) | 2016.07.13 |
message queue with boost and serialization (0) | 2016.07.12 |
message queue 구현 - not using boost library (0) | 2016.07.08 |
template과 상속 조합 (0) | 2016.07.07 |