2017-02-04 07:35:08 -05:00
|
|
|
# stress test for creating many threads
|
|
|
|
|
|
|
|
try:
|
|
|
|
import utime as time
|
|
|
|
except ImportError:
|
|
|
|
import time
|
|
|
|
import _thread
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
|
2017-02-04 07:35:08 -05:00
|
|
|
def thread_entry(n):
|
|
|
|
pass
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
|
2017-02-04 07:35:08 -05:00
|
|
|
thread_num = 0
|
|
|
|
while thread_num < 500:
|
|
|
|
try:
|
|
|
|
_thread.start_new_thread(thread_entry, (thread_num,))
|
|
|
|
thread_num += 1
|
|
|
|
except MemoryError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
# wait for the last threads to terminate
|
|
|
|
time.sleep(1)
|
2021-03-15 09:57:36 -04:00
|
|
|
print("done")
|