Last change
on this file since 1290 was
1290,
checked in by sam, 11 years ago
|
debug: do not use std::abort() on the PS3.
|
-
Property svn:keywords set to
Id
|
File size:
649 bytes
|
Line | |
---|
1 | // |
---|
2 | // Lol Engine |
---|
3 | // |
---|
4 | // Copyright: (c) 2010-2012 Sam Hocevar <sam@hocevar.net> |
---|
5 | // This program is free software; you can redistribute it and/or |
---|
6 | // modify it under the terms of the Do What The Fuck You Want To |
---|
7 | // Public License, Version 2, as published by Sam Hocevar. See |
---|
8 | // http://sam.zoy.org/projects/COPYING.WTFPL for more details. |
---|
9 | // |
---|
10 | |
---|
11 | // |
---|
12 | // Debug utilities |
---|
13 | // --------------- |
---|
14 | // |
---|
15 | |
---|
16 | #if !defined __LOL_DEBUG_H__ |
---|
17 | #define __LOL_DEBUG_H__ |
---|
18 | |
---|
19 | #include <cstdlib> |
---|
20 | |
---|
21 | namespace lol |
---|
22 | { |
---|
23 | |
---|
24 | static inline void Abort() |
---|
25 | { |
---|
26 | #if defined __CELLOS_LV2__ |
---|
27 | *(uint32_t *)NULL = 0; |
---|
28 | #else |
---|
29 | std::abort(); |
---|
30 | #endif |
---|
31 | } |
---|
32 | |
---|
33 | } /* namespace lol */ |
---|
34 | |
---|
35 | #endif // __LOL_DEBUG_H__ |
---|
36 | |
---|
Note: See
TracBrowser
for help on using the repository browser.