Git Product home page Git Product logo

Comments (1)

qwwdfsad avatar qwwdfsad commented on June 2, 2024

I am not exactly sure what the desired behaviour is.

First things first, let's figure out "undispatched" coroutines behaviour:

suspend fun weWantToUseSteppingInThisFunction() {
    println("A")
    DebugProbes.dumpCoroutinesInfo().map {
        println("State: ${it.state}")
    }
    delay(100)
    println("B")
}

launch(start = CoroutineStart.UNDISPATCHED) { // or launch(Dispatchers.Unconfined)
    weWantToUseSteppingInThisFunction()
}

For the UNDISPATCHED case, it will print

A
State: RUNNING
State: CREATED

while for UNCONFINED it's

State: RUNNING
State: RUNNING

No matter the nesting statuses decision, the UNDISPATCHED behaviour is clearly a bug -- there shouldn't be any reasonable situations when we are within coroutine body but consider coroutine non-running.
The fix is most likely straightforward -- startDirect rightfully notifies the debugger about the creating, but not about the actual start, and it also bypasses coroutine intrinsics that could've done so for it. We can change it by notifying it right in the same place.

When the coroutine machinery thinks that A is executed by the outer coroutine, this becomes impossible.

If this is the root cause of our stepping problem, then we can agree this is a bug and fix it. But, if the problem lies in the fact that we have two nested running coroutines in the same thread, then this is uncharted territory where we'll have to find some solution because, depending on the angle you are looking at that, the outer coroutine might or might not be RUNNING and might or might not be SUSPENDED (note: transition to SUSPENDED is not a side-effect free action and also can confuse users when they expect outer coroutine not to suspend)

from kotlinx.coroutines.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.