kernel: handle: rename handle transfer mode constants

This commit is contained in:
2026-03-29 11:48:31 +01:00
parent 537242e606
commit 9001f8e064
2 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -32,13 +32,13 @@
#define KERN_MSG_MAX_HANDLES 64
/* the corresponding handle should be ignored */
#define KERN_MSG_HANDLE_IGNORE 0
#define HANDLE_TRANSFER_IGNORE 0
/* the corresponding handle should be moved to the recipient task. the handle
* will be closed. */
#define KERN_MSG_HANDLE_MOVE 1
#define HANDLE_TRANSFER_MOVE 1
/* the corresponding handle should be copied to the recipient task. the handle
* will remain valid for the sending task. */
#define KERN_MSG_HANDLE_COPY 2
#define HANDLE_TRANSFER_COPY 2
/* maximum number of objects that can be waited on in a single call to
* kern_object_wait */