스레드가 죽었는지 확인하는 Python 예제 코드Python/Python - 스레드&프로세스2023. 10. 14. 07:57
Table of Contents
반응형
스레드가 종료되거나 죽었다면 다시 스레드를 실행시켜주는 파이썬 예제 코드입니다.
2023. 1. 28 최초작성
참고
https://blog.naver.com/ytlee64/222832101970
import threading def func(): for i in range(5): print(f'##### thread print {i}') print('##### thread exit #####') t = threading.Thread(target=func) t.start() # 스레드 재시작을 2번 반복합니다. try_num = 2 while True: if try_num == 0: break # 스레드가 살아있는지 체크 if t!=None and t.is_alive(): #print('thread alive') continue # 스레드가 종료되었다면 다시 실행 else: print('thread dead, restart thread') t = threading.Thread(target=func) t.start() try_num = try_num -1 |
실행 결과입니다. 스레드가 2번 재시작되었습니다.
##### thread print 0
##### thread print 1
##### thread print 2
##### thread print 3
##### thread print 4
##### thread exit #####
thread dead, restart thread
##### thread print 0
##### thread print 1
##### thread print 2
##### thread print 3
##### thread print 4
##### thread exit #####
thread dead, restart thread
##### thread print 0
##### thread print 1
##### thread print 2
##### thread print 3
##### thread print 4
##### thread exit #####
반응형
'Python > Python - 스레드&프로세스' 카테고리의 다른 글
Python Thread / Process 강제로 종료시키기 (0) | 2024.03.17 |
---|---|
Python Thread 예제 (0) | 2023.10.21 |
Python에서 자식 Process 죽었는지 확인하는 예제 코드 (0) | 2023.10.12 |
Python에서 자식 Process ID 확인하는 예제 코드 (0) | 2023.10.12 |
Thread에서 사용한 Python Queue 간단한 예제 (0) | 2023.10.07 |