summaryrefslogtreecommitdiff
path: root/tests/modules/thread/coroutine.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2025-09-02 10:16:24 +0800
committerGitHub <[email protected]>2025-09-02 10:16:24 +0800
commit148501afafa5e9e05da7a54bc804880d6c415849 (patch)
treef5cbcee2b05d4b836478a45698c8a42b43ea38b7 /tests/modules/thread/coroutine.lua
parent90b7015682c5523dfa252ebfbab6ed16b3e4b16a (diff)
parent37a499eeb5fd84be4ac83d639211e18e55dccd32 (diff)
Merge pull request #6324 from xmake-io/thread
Add native thread support
Diffstat (limited to 'tests/modules/thread/coroutine.lua')
-rw-r--r--tests/modules/thread/coroutine.lua32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/modules/thread/coroutine.lua b/tests/modules/thread/coroutine.lua
new file mode 100644
index 000000000..28aa8971e
--- /dev/null
+++ b/tests/modules/thread/coroutine.lua
@@ -0,0 +1,32 @@
+import("core.base.thread")
+import("core.base.scheduler")
+
+function thread_loop()
+ import("core.base.thread")
+ print("%s: starting ..", thread.running())
+ local dt = os.mclock()
+ for i = 1, 10 do
+ print("%s: %d", thread.running(), i)
+ os.sleep(1000)
+ end
+ dt = os.mclock() - dt
+ print("%s: end, dt: %d ms", thread.running(), dt)
+end
+
+function coroutine_loop()
+ print("%s: starting ..", scheduler.co_running())
+ local dt = os.mclock()
+ for i = 1, 10 do
+ print("%s: %d", scheduler.co_running(), i)
+ os.sleep(1000)
+ end
+ dt = os.mclock() - dt
+ print("%s: end, dt: %d ms", scheduler.co_running(), dt)
+end
+
+function main()
+ scheduler.co_start_named("coroutine", coroutine_loop)
+ local t = thread.start_named("thread", thread_loop)
+ t:wait(-1)
+end
+