move ResetType to kernel.h

This commit is contained in:
wwylele
2016-05-25 13:36:15 +03:00
parent f89273db5d
commit cc4681da73
3 changed files with 6 additions and 7 deletions
+6
View File
@@ -53,6 +53,12 @@ enum {
DEFAULT_STACK_SIZE = 0x4000,
};
enum class ResetType {
OneShot,
Sticky,
Pulse,
};
class Object : NonCopyable {
public:
virtual ~Object() {}