从套接字选择中跳出

breaking out from socket select(从套接字选择中跳出)
本文介绍了从套接字选择中跳出的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有一个循环,它基本上每隔几秒(超时后)调用一次:

I have a loop which basically calls this every few seconds (after the timeout):

 while(true){

    if(finished)
       return;

    switch(select(FD_SETSIZE, &readfds, 0, 0, &tv)){
        case SOCKET_ERROR : report bad stuff etc; return;
        default : break;
    }

    // do stuff with the incoming connection
 }

所以基本上每隔几秒钟(由电视指定),它就会重新激活聆听.

So basically for every few seconds (which is specified by tv), it reactivates the listening.

这是在线程 B(不是主线程)上运行的.有时我想从线程 A(主线程)立即结束这个接受器循环,但似乎我必须等到时间间隔结束..

This is run on thread B (not a main thread). There are times when I want to end this acceptor loop immediately from thread A (main thread), but seems like I have to wait until the time interval finishes..

有没有办法从另一个线程中断 select 函数,以便线程 B 可以立即退出?

Is there a way to disrupt the select function from another thread so thread B can quit instantly?

推荐答案

最简单的方法大概是使用 pipe(2) 创建一个管道并将读取端添加到 readfds.当另一个线程想要中断 select() 时,只需向它写入一个字节,然后再消费它.

The easiest way is probably to use pipe(2) to create a pipe and add the read end to readfds. When the other thread wants to interrupt the select() just write a byte to it, then consume it afterward.

这篇关于从套接字选择中跳出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Bring window to front -gt; raise(),show(),activateWindow() don’t work(把窗户放在前面 -raise(),show(),activateWindow() 不起作用)
How to get a list video capture devices NAMES (web cameras) using Qt (crossplatform)? (C++)(如何使用 Qt(跨平台)获取列表视频捕获设备名称(网络摄像机)?(C++))
How to compile Qt as static(如何将 Qt 编译为静态)
C++ over Qt : Controlling transparency of Labels and Buttons(C++ over Qt:控制标签和按钮的透明度)
How to know when a new USB storage device is connected in Qt?(Qt如何知道新的USB存储设备何时连接?)
What is an event loop in Qt?(Qt 中的事件循环是什么?)