allocate root thread on heap, not stack

This commit is contained in:
Joel Dice
2007-07-20 17:26:13 -06:00
parent 108f8d7bc0
commit b57e1eee76
6 changed files with 9 additions and 31 deletions

View File

@ -1,8 +1,6 @@
#ifndef COMMON_H
#define COMMON_H
#include "stdint.h"
#include "stdlib.h"
#include "stdarg.h"
@ -29,8 +27,6 @@
inline void* operator new(size_t, void* p) throw() { return p; }
namespace vm {
typedef void* object;