File tree 3 files changed +17
-17
lines changed
3 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -688,19 +688,19 @@ table.insert(__all_coro, scheduler_co)
688
688
__coro2notes [scheduler_co ]= {__loc =# __all_coro , __name = " scheduler" }
689
689
690
690
__resume_scheduler = function ()
691
- print (" __task.resume_scheduler called! scheduler_co is: " .. __costring (scheduler_co ))
692
- __st (scheduler_co , " scheduler_co" )
691
+ -- print("__task.resume_scheduler called! scheduler_co is: "..__costring(scheduler_co))
692
+ -- __st(scheduler_co, "scheduler_co")
693
693
694
694
-- if scheduler is already running, this should be a no-op;
695
695
-- Lua won't let us resume a 'normal' state coroutine anyway.
696
696
if coroutine.status (scheduler_co ) == " normal" then
697
697
698
698
local co , isMain = coroutine.running ()
699
- print (" __task.resume_scheduler called! current coro is: " , __costring (co ), " isMain:" .. tostring (isMain ))
700
- __showco ()
701
- __stacks ()
699
+ -- print("__task.resume_scheduler called! current coro is: ", __costring(co), " isMain:"..tostring(isMain))
700
+ -- __showco()
701
+ -- __stacks()
702
702
703
- print (" warning: __resume_scheduler() no-op: scheduler is in normal, returning early instead" )
703
+ -- print("warning: __resume_scheduler() no-op: scheduler is in normal, returning early instead")
704
704
-- print(debug.traceback("__resume_scheduler: scheduler is in normal"))
705
705
-- return true, coroutine.yield()
706
706
return false
Original file line number Diff line number Diff line change @@ -3283,7 +3283,7 @@ end
3283
3283
__eval_next_count = 1
3284
3284
3285
3285
__eval = function (code )
3286
- print (" __eval called with code: '" .. code .. " '" )
3286
+ -- print("__eval called with code: '"..code.."'")
3287
3287
3288
3288
-- since an eval of a receive/select may be blocking, we
3289
3289
-- need to start each new bit of code at the repl
You can’t perform that action at this time.
0 commit comments