Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
Program Files
/
Python312
/
Lib
/
test
/
View File Name :
_test_venv_multiprocessing.py
import multiprocessing import random import sys def fill_queue(queue, code): queue.put(code) def drain_queue(queue, code): if code != queue.get(): sys.exit(1) def test_func(): code = random.randrange(0, 1000) queue = multiprocessing.Queue() fill_pool = multiprocessing.Process( target=fill_queue, args=(queue, code) ) drain_pool = multiprocessing.Process( target=drain_queue, args=(queue, code) ) drain_pool.start() fill_pool.start() fill_pool.join() drain_pool.join() def main(): multiprocessing.set_start_method('spawn') test_pool = multiprocessing.Process(target=test_func) test_pool.start() test_pool.join() sys.exit(test_pool.exitcode) if __name__ == "__main__": main()