[squeak-dev] Crash

Thiede, Christoph Christoph.Thiede at student.hpi.uni-potsdam.de
Sun Feb 6 18:33:01 UTC 2022


Reproduced on Windows 21H1/OSVM 202112201228.


Best,

Christoph

________________________________
Von: Squeak-dev <squeak-dev-bounces at lists.squeakfoundation.org> im Auftrag von Jörg Belger <unique75 at web.de>
Gesendet: Donnerstag, 3. Februar 2022 22:30:49
An: The general-purpose Squeak developers list
Betreff: [squeak-dev] Crash

This leads to an image/VM crash too

        | oc |
        oc := OrderedCollection new.
        400000000 timesRepeat: [oc add: Object new]

This here is working for me:

        | oc |
        oc := OrderedCollection new: 400000000.
        400000000 timesRepeat: [oc add: Object new]

This here is working too for me:

        | oc |
        oc := OrderedCollection new.
        400000000 timesRepeat: [oc add: 1]

It seems there is possibly a memory problem in the VM.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.squeakfoundation.org/pipermail/squeak-dev/attachments/20220206/44ef4e23/attachment-0001.html>


More information about the Squeak-dev mailing list