概要

実装



#if ARCH_LP64
#define OBJECT_SLAB_SIZE                    (8192L)
  #define OBJECT_SLAB_SIZE_SHIFT            13
  #define OBJECT_SLAB_THRESHOLD             (OBJECT_SLAB_SIZE / 8)  // m_shared[] and m_atomic[] in ObjectFactory in effect this value
  #define VM_STACK_BYTESIZE                 (8192L)
#else
  #define OBJECT_SLAB_SIZE                  (4096L)
  #define OBJECT_SLAB_SIZE_SHIFT            12
  #define OBJECT_SLAB_THRESHOLD             (OBJECT_SLAB_SIZE / 4)  // m_shared[] and m_atomic[] in ObjectFactory in effect this value
  #define VM_STACK_BYTESIZE                 (4096L)
#endif

コメントをかく


「http://」を含む投稿は禁止されています。

利用規約をご確認のうえご記入下さい

Wiki内検索

管理人/副管理人のみ編集できます