Both funcitons (##make-condvar and #make-mutex) require a name as argument.
In lib/io.scm there are calls to those functions that don't provide one.
##make-condvar: on line 142 and 277
##make-mutex: on line 141 and 276
Passing #!void seems to fix it, but better names might be good.
Both funcitons (
##make-condvarand#make-mutex) require a name as argument.In
lib/io.scmthere are calls to those functions that don't provide one.##make-condvar: on line 142 and 277##make-mutex: on line 141 and 276Passing
#!voidseems to fix it, but better names might be good.