summaryrefslogtreecommitdiff
path: root/microkernel/mach
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2025-04-19 22:39:40 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2025-04-19 22:39:40 +0200
commit4861c35955a4e18b671b07c7b97252852501f535 (patch)
tree0c5769445a0aa0bd98af0cc56aa87ef10f0d64ff /microkernel/mach
parent98843149d1935fb8c88b4ed55d115a016fa626c3 (diff)
parentcd5efd69e6a02f9072d929da5c2ccbdc7f87f0fb (diff)
Merge branch 'master' of braunbox:~hurd-web/hurd-web
Diffstat (limited to 'microkernel/mach')
-rw-r--r--microkernel/mach/gnumach/projects/mach_5.mdwn10
1 files changed, 5 insertions, 5 deletions
diff --git a/microkernel/mach/gnumach/projects/mach_5.mdwn b/microkernel/mach/gnumach/projects/mach_5.mdwn
index 7b59170b..d7355f4b 100644
--- a/microkernel/mach/gnumach/projects/mach_5.mdwn
+++ b/microkernel/mach/gnumach/projects/mach_5.mdwn
@@ -54,11 +54,11 @@ rewrite rights and pointers to out-of-band memory, it has to parse the
message. As type information and values are interleaved, it has to
iterate over the whole message.
-Furthermore, there are two kinds of type descriptors, mach_msg_type_t
-and mach_msg_type_long_t. The reason for this is that the amount of
-data that can be described using mach_msg_type_t is just 131072 byte.
-This is because msgt_size is an 8-bit value describing the size of one
-element in bits, and msgt_number is an 12-bit value describing the
+Furthermore, there are two kinds of type descriptors, `mach_msg_type_t`
+and `mach_msg_type_long_t`. The reason for this is that the amount of
+data that can be described using `mach_msg_type_t` is just 131072 byte.
+This is because `msgt_size` is an 8-bit value describing the size of one
+element in bits, and `msgt_number` is an 12-bit value describing the
number of items.
### Required change to the message format