Skip to content

Commit

Permalink
Drop unused function Process_rowSetPriority()
Browse files Browse the repository at this point in the history
  • Loading branch information
cgzones authored and BenBE committed Aug 15, 2024
1 parent 3c7fe27 commit 2503239
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
6 changes: 0 additions & 6 deletions Process.c
Original file line number Diff line number Diff line change
Expand Up @@ -867,12 +867,6 @@ static bool Process_setPriority(Process* this, int priority) {
return (err == 0);
}

bool Process_rowSetPriority(Row* super, int priority) {
Process* this = (Process*) super;
assert(Object_isA((const Object*) this, (const ObjectClass*) &Process_class));
return Process_setPriority(this, priority);
}

bool Process_rowChangePriorityBy(Row* super, Arg delta) {
Process* this = (Process*) super;
assert(Object_isA((const Object*) this, (const ObjectClass*) &Process_class));
Expand Down
2 changes: 0 additions & 2 deletions Process.h
Original file line number Diff line number Diff line change
Expand Up @@ -307,8 +307,6 @@ void Process_init(Process* this, const struct Machine_* host);

const char* Process_rowGetSortKey(Row* super);

bool Process_rowSetPriority(Row* super, int priority);

bool Process_rowChangePriorityBy(Row* super, Arg delta);

bool Process_rowSendSignal(Row* super, Arg sgn);
Expand Down

0 comments on commit 2503239

Please sign in to comment.