Skip to content

Commit

Permalink
Update richards.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
voltrevo committed Jul 7, 2023
1 parent 24438ae commit bfe8245
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inputs/passing/octane/richards.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,8 @@ const STATE_SUSPENDED = 2;
*/
const STATE_HELD = 4;

const STATE_SUSPENDED_RUNNABLE = 3 /* STATE_SUSPENDED | STATE_RUNNABLE */;
const STATE_NOT_HELD = ~4 /* Equal: [-5, ~4, ~STATE_HELD, STATE_NOT_HELD] */;
const STATE_SUSPENDED_RUNNABLE = 3 /* TODO: STATE_SUSPENDED | STATE_RUNNABLE */;
const STATE_NOT_HELD = ~STATE_HELD;

/**
* A task control block manages a task and the queue of work packages associated
Expand Down

0 comments on commit bfe8245

Please sign in to comment.