summaryrefslogtreecommitdiff
path: root/Source/Library/Userland
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2009-12-16 17:14:58 +0100
committerAlexis211 <alexis211@gmail.com>2009-12-16 17:14:58 +0100
commit5f87c447bdcb82beacbfb930942fe9995dcdb60f (patch)
treea2003dd1d8ce2b35d22283316d370c4fb25c9995 /Source/Library/Userland
parentdf343de7cca5f89f8e8d825fbcc1a49413412716 (diff)
downloadMelon-5f87c447bdcb82beacbfb930942fe9995dcdb60f.tar.gz
Melon-5f87c447bdcb82beacbfb930942fe9995dcdb60f.zip
Nothing, really
Diffstat (limited to 'Source/Library/Userland')
-rw-r--r--Source/Library/Userland/Start.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Library/Userland/Start.cpp b/Source/Library/Userland/Start.cpp
index 0c25491..f1d1771 100644
--- a/Source/Library/Userland/Start.cpp
+++ b/Source/Library/Userland/Start.cpp
@@ -13,13 +13,14 @@ VirtualTerminal invt(0), outvt(0);
int main(const Vector<String>& args);
extern "C" void start() {
+ heap.create(0x40000000, 0x00040000, 0x00004000); //Initially create a 256ko heap with 16ko index
+
//Call static constructors
u32int i = 0;
for(u32int * call = &start_ctors; call < &end_ctors; call++) {
((void (*)(void))*call)();
}
- heap.create(0x40000000, 0x00040000, 0x00004000); //Initially create a 256ko heap with 16ko index
invt = VirtualTerminal::getIn(); outvt = VirtualTerminal::getOut();
if (!invt.valid()) threadFinishedSyscall(1);
if (!outvt.valid()) threadFinishedSyscall(2);