[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Chicken-users] (apparently) solved; patch attached -- was: clueless
From: |
F. Wittenberger |
Subject: |
Re: [Chicken-users] (apparently) solved; patch attached -- was: clueless about memory consumption. |
Date: |
Sat, 24 Jul 2010 14:34:47 +0200 |
Am Samstag, den 24.07.2010, 14:10 +0200 schrieb Jörg F. Wittenberger:
> Hi all,
>
> The attached diff against git head contains these modifications:
(define (##sys#make-thread thunk state name q)
(##sys#make-structure
'thread
thunk ; #1 thunk
#f ; #2 result list
state ; #3 state
#f ; #4 block-timeout
(vector ; #5 state buffer
##sys#dynamic-winds
##sys#standard-input
##sys#standard-output
##sys#standard-error
##sys#default-exception-handler
(##sys#grow-vector ##sys#current-parameter-vector (##sys#size
##sys#current-parameter-vector) #f) )
name ; #6 name
(##core#undefined) ; #7 end-exception
'() ; #8 owned mutexes
q ; #9 quantum
(##core#undefined) ; #10 specific
#f ; #11 block object (type depends on
blocking type)
'() ; #12 recipients (currently unused)
^^^^^^^^^^^^^^^^^^
this is misleading!
;-)
#f) ) ; #13 unblocked by timeout?