-Initial support for TPS65950 -Support for changing CPU frequency in prcm driver -Preparations for context switching
16 lines
271 B
C++
16 lines
271 B
C++
#ifndef _EXCEPTIONS_HH_
|
|
#define _EXCEPTIONS_HH_
|
|
|
|
namespace ex {
|
|
// A memory allocation, or virtual address space allocation, failed
|
|
class bad_alloc{};
|
|
|
|
// An operation timed out
|
|
class timeout{};
|
|
|
|
// An unexcpected fatal error occured
|
|
class error{};
|
|
}
|
|
|
|
#endif
|