unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
From: Amirouche Boubekki <amirouche@hypermove.net>
To: "Clément Lassieur" <clement@lassieur.org>
Cc: guile-devel
	<guile-devel-bounces+amirouche+dev=hypermove.net@gnu.org>,
	guile-devel@gnu.org
Subject: Re: crashes with Fibers
Date: Mon, 02 Jul 2018 00:32:43 +0200	[thread overview]
Message-ID: <a1ed66b66696a622740a72f8bd57bbd1@hypermove.net> (raw)
In-Reply-To: <87muvb2jd2.fsf@lassieur.org>

On 2018-07-01 15:09, Clément Lassieur wrote:
> Amirouche Boubekki <amirouche@hypermove.net> writes:
> 
>> Sorry, I did not read the code. What are you trying to achieve?
> 
> Within a fiber, I need to spawn several Guile-Git clones in parallel.
> Since they block the Fibers scheduler, they need to be in separate
> threads.

I tried that in the past it was working, but don't remember correctly
how I did.

epoll is dead seems to indicate that there is no fiber scheduler running
from the thread your are calling put-message. This might be a design 
decision
or not. My understanding is that your code should work as intended.

Anyway, try to spawn the thread and/or create the channel before you
run fibers. I can't try that myself because of my slow connection which
takes ages to install guile-fibers.

Something like:

(define (test6)
   (let ((channel (make-channel)))
     (call-with-new-thread
      (lambda ()
        (put-message channel "hello world")))
     (run-fibers
      (lambda ()
        (spawn-fiber
         (lambda ()
           (format #t "~a~%" (get-message channel)))))
     #:drain? #t)))



  reply	other threads:[~2018-07-01 22:32 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-29  9:20 crashes with Fibers Clément Lassieur
2018-07-01 11:16 ` Amirouche Boubekki
2018-07-01 13:09   ` Clément Lassieur
2018-07-01 22:32     ` Amirouche Boubekki [this message]
2018-07-01 22:41       ` Amirouche Boubekki
2018-07-01 22:46         ` Amirouche Boubekki
2018-07-02  9:22           ` Clément Lassieur
2018-07-02  9:32 ` Ludovic Courtès
2018-07-02 11:34   ` Clément Lassieur
2018-07-17 18:16     ` Clément Lassieur
2018-07-19 23:50       ` Amirouche Boubekki

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/guile/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a1ed66b66696a622740a72f8bd57bbd1@hypermove.net \
    --to=amirouche@hypermove.net \
    --cc=clement@lassieur.org \
    --cc=guile-devel-bounces+amirouche+dev=hypermove.net@gnu.org \
    --cc=guile-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).