diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-04-05 01:59:36 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-04-05 02:01:15 +0200 |
| commit | 21fe8d0b7d48e92ba0d45c084bf868c94bb67cd7 (patch) | |
| tree | 4193f80c02ce03b2e02d6c2ef1a1a0526ea7b8fc /Private/CompilerKit | |
| parent | a45872967f07906297782cd04223706cfc326219 (diff) | |
HAL/PPC: Adding support for PowerPC, implemented rt_do_context_switch.
Refactor: Everything which starts with HCORE_ is NEWOS_ now.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/CompilerKit')
| -rw-r--r-- | Private/CompilerKit/Detail.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Private/CompilerKit/Detail.hxx b/Private/CompilerKit/Detail.hxx index 78a08dcf..3a378018 100644 --- a/Private/CompilerKit/Detail.hxx +++ b/Private/CompilerKit/Detail.hxx @@ -10,22 +10,22 @@ # include <NewKit/Defines.hpp> #endif // ifdef __KERNEL__ -#define HCORE_COPY_DELETE(KLASS) \ +#define NEWOS_COPY_DELETE(KLASS) \ KLASS &operator=(const KLASS &) = delete; \ KLASS(const KLASS &) = delete; -#define HCORE_COPY_DEFAULT(KLASS) \ +#define NEWOS_COPY_DEFAULT(KLASS) \ KLASS &operator=(const KLASS &) = default; \ KLASS(const KLASS &) = default; -#define HCORE_MOVE_DELETE(KLASS) \ +#define NEWOS_MOVE_DELETE(KLASS) \ KLASS &operator=(KLASS &&) = delete; \ KLASS(KLASS &&) = delete; -#define HCORE_MOVE_DEFAULT(KLASS) \ +#define NEWOS_MOVE_DEFAULT(KLASS) \ KLASS &operator=(KLASS &&) = default; \ KLASS(KLASS &&) = default; |
