aboutsummaryrefslogtreecommitdiffstats
path: root/tasking.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-09-30 10:59:59 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-09-30 10:59:59 -0400
commit85c8fd05f1a0c0224882c4fafa60003d3ef56cf3 (patch)
treec86b968c5a53c0767c00116c6fc03f60c8e3aa64 /tasking.cpp
parentabfdd6eb3ed61d13a47735812eca0028caf6b6da (diff)
compile with wall,extra,error,pedantic
Diffstat (limited to 'tasking.cpp')
-rw-r--r--tasking.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tasking.cpp b/tasking.cpp
index 97dd51a..1b78011 100644
--- a/tasking.cpp
+++ b/tasking.cpp
@@ -21,7 +21,7 @@ struct Task
static std::array<Task, 4> tasks;
static int current = -1;
-void schedule(const Registers& regs)
+void schedule(const Registers&)
{
if (current < 0)
return;
@@ -32,7 +32,7 @@ void schedule(const Registers& regs)
)" : "=m" (tasks[current].esp), "=m" (tasks[current].ebp));
do {
- if (++current >= tasks.size())
+ if (++current >= static_cast<int>(tasks.size()))
current = 0;
} while (tasks[current].state == Task::Invalid || tasks[current].state == Task::Staging);
@@ -61,13 +61,13 @@ void tasking_initialize()
bool tasking_spawn(void (*entry)(), unsigned ssize)
{
- int i = -1;
+ unsigned i;
for (i = 0; i < tasks.size(); ++i) {
if (tasks[i].state == Task::Invalid)
break;
}
- if (i < 0)
+ if (i >= tasks.size())
return false;
tasks[i].state = Task::Staging;