This website requires JavaScript.
Explore
Help
Sign In
steve
/
factor
Watch
1
Star
0
Fork
You've already forked factor
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
71ad025aaf
factor
/
vm
/
run.hpp
7 lines
60 B
C++
Raw
Normal View
History
Unescape
Escape
VM: Refactor run.cpp/hpp to Factor style
2013-05-11 22:27:19 -04:00
namespace
factor
{
Use C++ namespaces
2009-05-04 02:46:13 -04:00
vm: replace assert with FACTOR_ASSERT Factor is finally a real C++ project and has a custom assert macro. Assertion failures were still getting caught as exceptions and causing failure loops. Write our own macro that calls factor::abort on failure.
2011-11-17 23:42:30 -05:00
void
abort
(
)
;
void
exit
(
int
status
)
;
Fix botched replace all in VM source, clean up image saving code, and fix save-image-and-exit to actually call (save-image-and-exit) instead of (save-image)
2009-05-05 11:29:22 -04:00
}