| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | // ====================================================================== | ||
| 2 | // \title Os/Posix/DefaultTask.cpp | ||
| 3 | // \brief sets default Os::Task to posix implementation via linker | ||
| 4 | // ====================================================================== | ||
| 5 | #include "Os/Delegate.hpp" | ||
| 6 | #include "Os/Posix/Task.hpp" | ||
| 7 | #include "Os/Task.hpp" | ||
| 8 | |||
| 9 | namespace Os { | ||
| 10 | |||
| 11 | 3050 | TaskInterface* TaskInterface::getDelegate(TaskHandleStorage& aligned_new_memory) { | |
| 12 | 3050 | return Os::Delegate::makeDelegate<TaskInterface, Os::Posix::Task::PosixTask>(aligned_new_memory); | |
| 13 | } | ||
| 14 | |||
| 15 | } // namespace Os | ||
| 16 |