mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
34 lines
808 B
Python
34 lines
808 B
Python
from pkpy import ComputeThread
|
|
import time
|
|
|
|
thread_1 = ComputeThread(1)
|
|
thread_2 = ComputeThread(2)
|
|
|
|
for t in [thread_1, thread_2]:
|
|
t.exec_blocked('''
|
|
def func(a):
|
|
from pkpy import currentvm
|
|
print("Hello from thread", currentvm(), "a =", a)
|
|
for i in range(500000):
|
|
if i % 100000 == 0:
|
|
print(i, "from thread", currentvm())
|
|
return a
|
|
|
|
x = 123
|
|
''')
|
|
assert thread_1.eval_blocked('x') == 123
|
|
|
|
# thread_1.wait_for_done()
|
|
# thread_2.wait_for_done()
|
|
|
|
thread_1.call('func', [1, 2, 3])
|
|
thread_2.call('func', [4, 5, 6])
|
|
|
|
while not thread_1.is_done or not thread_2.is_done:
|
|
print("Waiting for threads to finish...")
|
|
time.sleep(1)
|
|
|
|
print("Thread 1 last return value:", thread_1.last_retval())
|
|
print("Thread 2 last return value:", thread_2.last_retval())
|
|
|