Updating to build on Linux and Mac, and hopefully Windows too.

This commit is contained in:
Eric Holk 2011-08-11 12:26:23 -07:00
parent b2dad8af31
commit a332043561
2 changed files with 7 additions and 3 deletions

View file

@ -78,4 +78,8 @@ swap_registers:
.globl task_trampoline
task_trampoline:
// This gets set up by std::task::_spawn.
#ifdef __APPLE__
call _task_exit
#else
call task_exit
#endif