- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
所以我尝试使用以下代码从 C++ 程序的 RPC 调用启动一个新线程到 Flask 服务器中
@api.route("/open_api_connection")
def open_api_connection():
# spawn server
from threading import Thread
thread = Thread(target = start_message_server)
thread.start()
return jsonify({"host":"localhost", "port":8080})
def start_message_server():
while True:
time.sleep(1)
print "in server"
但是,当我通过 C++ 程序向该服务器发送 HTTP 请求时,Flask 服务器无法用 CTRL-c 杀死。我猜新线程不知何故变成了僵尸。 ps
显示即使在 CTRL-c 之后进程仍在运行。 CTRL-z 也不起作用...我正在使用内置服务器启动 Flask 服务器
api = Flask(__name__)
# import stuff ...
if __name__ == "__main__":
# check if the port number that is used to run this script has been
# provided or not
if len(sys.argv) == 2:
port = sys.argv[1]
else:
sys.stderr.write("Usage: python " + sys.argv[0] + " <port_number>\n")
sys.exit(1)
api.run(port = int(sys.argv[1]), threaded = True)
我像这样通过 C++ 中的调用连接到此服务器
open_connection("localhost", "8000");
知道为什么会发生这种情况以及如何解决这个问题吗?
最佳答案
参见文档 here :
A thread can be flagged as a “daemon thread”. The significance of this flag is that the entire Python program exits when only daemon threads are left. The initial value is inherited from the creating thread. The flag can be set through the daemon property.
只有当所有非守护线程都退出时,python 进程才会退出。主线程是处理标准 ctrl-c 事件(通常是 unix 信号 SIGINT)的线程,并在收到该事件时退出。任何其他非守护线程将 (a) 需要意识到主线程已退出然后自行退出,或者 (b) 是在所有其他线程退出时自动退出的守护线程。
创建线程时,尝试改为:
thread = Thread(target=start_message_server)
thread.daemon = True
thread.start()
以这种方式创建时,线程不应阻止进程关闭,如果它是唯一运行的线程。
关于python - 从 C++ 通过 RPC 启动新线程会导致进程成为僵尸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36590132/
嘿。本周的一个教程,其中一个问题要求通过使用其他函数 formatLine 和 formatList 创建一个函数 formatLines,以格式化行列表。 我的代码是这样的; type Line =
我是一名优秀的程序员,十分优秀!