Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 624 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 624 Bytes

mtserver

Example source code for the article 'Multithreaded Work Queue Based Server in C++'

Build

  1. Get the threads code at https://github.com/vichargrave/threads.git.
  2. Get the work queue code at https://github.com/vichargrave/wqueue
  3. Get the TCP sockets code at https://github.com/vichargrave/tcpsockets
  4. Place the mtserver, threads, wqueue and tcpsockets directories at the same directory level, e.g. ${HOME}/src/mtserver, ${HOME}/src/threads, ${HOME}/src/wqueue and ${HOME}/src/tcpsockets.
  5. cd to ${HOME}/src/mtserver.
  6. Build the test client and server applications by running 'make'.