diff options
author | bd <bdunahu@operationnull.com> | 2025-03-29 12:30:54 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-29 12:30:54 -0400 |
commit | 9793bf119cc6314e264bdfc9e98bc27c81db0adb (patch) | |
tree | 2c8159f9b9ae655cc810e705834a45938a63c624 /src/utils | |
parent | bc47d9131869b1f072e21d9cb61746d14bf30751 (diff) |
Add implementation functions for checking out a register.
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/response.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/response.cc b/src/utils/response.cc index def6578..3d6e439 100644 --- a/src/utils/response.cc +++ b/src/utils/response.cc @@ -3,6 +3,6 @@ std::ostream &operator<<(std::ostream &os, Response r) { - const std::string nameR[] = {"OK", "WAIT", "BLOCKED"}; + const std::string nameR[] = {"OK", "WAIT", "BLOCKED", "STALLED"}; return os << nameR[r]; } |