2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
6 #include <aros/kernel.h>
12 * Unfortunately it's impossible to fork() on iOS. fork()ed program can't register
13 * itself with Springboard and fails to run.
14 * So, well, currently we have no way to reboot AROS... Until we invent something clever. :)
16 int kick(int (*addr
)(), struct TagItem
*msg
)
18 int i
= addr(msg
, AROS_BOOT_MAGIC
);
20 DisplayError("Kernel exited with code %d", i
);