• R/O
  • SSH
  • HTTPS

globalbase: Commit


Commit MetaInfo

Revisión5987 (tree)
Tiempo2019-11-15 21:59:46
Autorjoshua

Log Message

soiApplication signal

Cambiar Resumen

Diferencia incremental

--- modules/tinyState/trunk/src/classes/ts/c++/tsOSversionBase.cpp (revision 5986)
+++ modules/tinyState/trunk/src/classes/ts/c++/tsOSversionBase.cpp (revision 5987)
@@ -75,6 +75,12 @@
7575 }
7676 TS_STATE(FIN_tsOSversionBase_START)
7777 {
78+ application->gc->exe(ifThis);
79+ return FIN_tsOSversionBase_EXE;
80+}
81+TS_STATE(FIN_tsOSversionBase_EXE)
82+{
83+ R_TEST
7884 REF_SET(vers->helper,0);
7985 REF_SET(vers,0);
8086 return rDO|FIN_TINYSTATE_START;
--- modules/tinyState/trunk/src/h/ts/c++/pObject.h (revision 5986)
+++ modules/tinyState/trunk/src/h/ts/c++/pObject.h (revision 5987)
@@ -2,8 +2,27 @@
22 #ifndef ___pObject_cpp_H___
33 #define ___pObject_cpp_H___
44
5+#include <new>
56
67 class pObject {
8+public:
9+ static void * operator new(size_t cbSize,void * ptr)
10+#if __cplusplus >= 201103L
11+ noexcept(false)
12+#else
13+ throw(std::bad_alloc)
14+#endif
15+ {
16+ return ptr;
17+ }
18+ static void operator delete(void * pv)
19+#if __cplusplus >= 201103L
20+ noexcept(true)
21+#else
22+ throw()
23+#endif
24+ {
25+ }
726 };
827
928 #endif
Show on old repository browser