From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Pach Roman (DGS-EC/EHS2)" Newsgroups: gmane.lisp.guile.user Subject: threads in guile-1.8 Date: Fri, 25 Jan 2008 05:56:42 +0100 Message-ID: <3F715C67433E594B88B5ABEBBC6EE49F01A21010@fe-mail47.de.bosch.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C85F0F.5A3D03A4" X-Trace: ger.gmane.org 1201277214 5140 80.91.229.12 (25 Jan 2008 16:06:54 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 25 Jan 2008 16:06:54 +0000 (UTC) To: Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Fri Jan 25 17:07:10 2008 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JIR4v-0006Cl-MS for guile-user@m.gmane.org; Fri, 25 Jan 2008 17:06:54 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JIR4V-0005Qt-EK for guile-user@m.gmane.org; Fri, 25 Jan 2008 11:06:27 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JIGhG-0004vI-81 for guile-user@gnu.org; Fri, 25 Jan 2008 00:01:46 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JIGhE-0004ub-Mr for guile-user@gnu.org; Fri, 25 Jan 2008 00:01:45 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JIGhE-0004uX-Il for guile-user@gnu.org; Fri, 25 Jan 2008 00:01:44 -0500 Original-Received: from smtp2-v.fe.bosch.de ([139.15.237.6]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JIGhE-0007i9-5n for guile-user@gnu.org; Fri, 25 Jan 2008 00:01:44 -0500 Original-Received: from vsmta1.fe.internet.bosch.com (unknown [10.4.98.30]) by imta6.fe.bosch.de (Postfix) with ESMTP id 9B2C738044 for ; Fri, 25 Jan 2008 06:01:32 +0100 (CET) Original-Received: from si-imc02.de.bosch.com (vsgw1.fe.internet.bosch.com [10.4.98.15]) by vsmta1.fe.internet.bosch.com (Postfix) with ESMTP id 8E5E8F98007 for ; Fri, 25 Jan 2008 06:01:32 +0100 (CET) Original-Received: from fe-mail47.de.bosch.com ([10.3.12.108]) by si-imc02.de.bosch.com with Microsoft SMTPSVC(6.0.3790.1830); Fri, 25 Jan 2008 06:01:32 +0100 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: threads in guile-1.8 Thread-Index: AchfD1ndJnmwhcmaQlKN0HL2G0u+zw== X-OriginalArrivalTime: 25 Jan 2008 05:01:32.0216 (UTC) FILETIME=[5A2DD380:01C85F0F] X-detected-kernel: by monty-python.gnu.org: FreeBSD 4.4 (1) X-Mailman-Approved-At: Fri, 25 Jan 2008 11:06:03 -0500 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:6386 Archived-At: This is a multi-part message in MIME format. ------_=_NextPart_001_01C85F0F.5A3D03A4 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hello, I have tried to move my software from guile-1.6 to 1.8. The part using threads did not want to run. So I tried a small test: guile> (use-modules (ice-9 threads)) guile> (make-thread (lambda () '())) and become a following error message: In standard input: 3: 0* (make-thread (lambda () (quote ()))) 3: 1 [call-with-new-thread # #] standard input:3:1: In procedure call-with-new-thread in expression (call-with-new-thread (lambda () #) %thread-handler): standard input:3:1: Function not implemented My question is, are the threads not implemented in version 1.8 ? Best regards, Roman Pach ------_=_NextPart_001_01C85F0F.5A3D03A4 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable threads in guile-1.8

Hello,

I have tried to move my software from = guile-1.6 to 1.8.
The part using threads did not want to = run.
So I tried a small test:

guile> (use-modules (ice-9 = threads))
guile> (make-thread (lambda () = '()))

and become a following error = message:

In standard input:
   3: 0* (make-thread = (lambda () (quote ())))
   3: 1  = [call-with-new-thread #<procedure #f ()> #<procedure = thread-handler #>]
standard input:3:1: In procedure = call-with-new-thread in expression (call-with-new-thread (lambda () #) = %thread-handler):

standard input:3:1: Function not = implemented

My question is, are the threads not = implemented in version 1.8 ?

Best regards,
Roman Pach

------_=_NextPart_001_01C85F0F.5A3D03A4--