help-smalltalk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Help-smalltalk] OOP Table size


From: Holger Hans Peter Freyther
Subject: [Help-smalltalk] OOP Table size
Date: Sat, 29 Dec 2012 11:53:38 +0100
User-agent: Mutt/1.5.21 (2010-09-15)

Dear Paolo,

oop.h
#define MAX_OOP_TABLE_SIZE      (sizeof(struct oop_s) << 18)

oop.c
  for (i = MAX_OOP_TABLE_SIZE; i && !oop_heap; i >>= 1)
    oop_heap = _gst_heap_create (address, i * sizeof (struct oop_s));


this code attempts to create address space for the OOP table. So should
table size hold the number of OOPs that should be usable in the image or
should it be the size in bytes?

holger



reply via email to

[Prev in Thread] Current Thread [Next in Thread]