Commit e1eb31da by FritzFlorian

Fix clean out references to legacy builds in the code.

parent 3ae41f42
Pipeline #1432 failed with stages
in 3 minutes 18 seconds
...@@ -170,7 +170,7 @@ int main() { ...@@ -170,7 +170,7 @@ int main() {
for (unsigned int i = 0; i < STACK_SIZE; i++) { for (unsigned int i = 0; i < STACK_SIZE; i++) {
if (custom_stack_1[i] != MAGIC_NUMBER) { if (custom_stack_1[i] != MAGIC_NUMBER) {
printf("\n\nUsed stack size about %u bytes.\n", (STACK_SIZE - i)); printf("\n\nUsed stack size about %lu bytes.\n", (STACK_SIZE - i));
break; break;
} }
} }
......
#include "pls/internal/scheduling/scheduler.h" #include "pls/internal/scheduling/scheduler.h"
#include "context_switcher/context_switcher.h" #include "context_switcher/context_switcher.h"
#include "pls/internal/base/thread.h"
#include "pls/internal/base/error_handling.h" #include "pls/internal/base/error_handling.h"
#include <thread>
namespace pls::internal::scheduling { namespace pls::internal::scheduling {
scheduler::scheduler(unsigned int num_threads, scheduler::scheduler(unsigned int num_threads,
...@@ -16,7 +16,6 @@ scheduler::scheduler(unsigned int num_threads, ...@@ -16,7 +16,6 @@ scheduler::scheduler(unsigned int num_threads,
reuse_thread, reuse_thread,
base::mmap_stack_allocator{}) {} base::mmap_stack_allocator{}) {}
scheduler::~scheduler() { scheduler::~scheduler() {
terminate(); terminate();
} }
...@@ -97,7 +96,7 @@ void scheduler::work_thread_work_section() { ...@@ -97,7 +96,7 @@ void scheduler::work_thread_work_section() {
} else { } else {
failed_steals++; failed_steals++;
if (failed_steals >= num_threads) { if (failed_steals >= num_threads) {
base::this_thread::yield(); std::this_thread::yield();
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment