GithubHelp home page GithubHelp logo

Comments (4)

amirouche avatar amirouche commented on September 25, 2024 1

I think in general it's hard to have a general definition of what it means to be done. scheduler-work-pending?

My idea to workaround the above behavior was the change the definitions of scheduler-work-pending? to with another clause in the and that looks like (zero? (scheduler-waiting-thread scheduler)) where scheduler-waiting-thread is a count of threads that are blocked inside get-message or put-message.

scheduler-work-pending? has the advantage that it's a simple and clear definition, but it is not universal. If you need another definition of "done", for example your definition above, you need to arrange to have the initial fiber outlast the tasks you are concerned with.

That is what I documented in the previous comment.

Thanks for the feedback! 👍

from fibers.

amirouche avatar amirouche commented on September 25, 2024

That said, for my usecase, run-fibers does not return, so this issue does not show up.

There is a workaround where one can properly manage the life of the threads created with call-with-new-thread and wait for the count of threads to become zero in the init procedure of run-fiber.

from fibers.

amirouche avatar amirouche commented on September 25, 2024

Maybe a parent-thread-scheduler parameter can help to solve the issue.

from fibers.

wingo avatar wingo commented on September 25, 2024

run-fibers #:drain? #t means to run until schedule-work-pending? returns false. scheduler-work-pending? returns true if there are pending timeouts or pending runnable tasks. Neither is the case for fibers waiting on external events; in this case messages on channels. From the point of view of scheduler-work-pending?, this program is undistinguishable from:

(define (main)
  (spawn-fiber (lambda () (get-message channel))))

I think in general it's hard to have a general definition of what it means to be done. scheduler-work-pending? has the advantage that it's a simple and clear definition, but it is not universal. If you need another definition of "done", for example your definition above, you need to arrange to have the initial fiber outlast the tasks you are concerned with.

from fibers.

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.