kernel: remove SEND_BLOCKED and REPLY_BLOCKED statuses from ports

this allows a port to be used by multiple threads at the same time
This commit is contained in:
2026-03-29 11:42:23 +01:00
parent 7d25f1c31a
commit f5a83af0d7
3 changed files with 0 additions and 8 deletions
-6
View File
@@ -9,12 +9,6 @@ enum port_status {
PORT_OFFLINE = 0,
/* port is connected and ready to send messages */
PORT_READY,
/* port has sent a message, and is waiting for the remote to receive it
*/
PORT_SEND_BLOCKED,
/* port has sent a message, and the remote has received it. waiting for
* the remote to reply. */
PORT_REPLY_BLOCKED,
};
struct port {