• Stars
    star
    2
  • Language
    C++
  • Created over 9 years ago
  • Updated over 9 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

学习了apache服务器, 服务器端增加线程池,每个线程轮流监听客户端的连接请求,使 用了互斥锁和条件变量来在accept调用的地方实现任何时候都只有一个线程处于监听状态, 其他线程处于空闲或工作状态,实现并发服务器"