Site icon EfmSoft

What does macOS kernel return 0x1000400D (MACH_RCV_INVALID_TYPE) mean?

 
Previous Next
MACH_RCV_BODY_ERROR MACH_RCV_SCATTER_SMALL

MACH_RCV_INVALID_TYPE

The error is in the caller’s scatter receive specification

MACH_RCV_INVALID_TYPE means an invalid message-type specification was supplied in the scatter list. It is not a finding that the sender used an invalid descriptor in its original message. The failure occurs in the optional receive-side overwrite/scatter machinery that describes where out-of-line data may be placed.

This distinction matters when debugging RPC code with generated bindings. A normal receive buffer can be perfectly valid while the supplemental scatter description is not. The nearby status MACH_RCV_SCATTER_SMALL instead indicates a valid overwrite region that lacks capacity; this code points at the descriptor type or specification itself.

What to inspect

References


Looking for a different code? Search another status or error code.

Exit mobile version