Site icon EfmSoft

What does macOS kernel return 0xDC008011 (kOSKextReturnDeferred) mean?

 
Previous Next
kOSKextReturnCache kOSKextReturnBootLevel

kOSKextReturnDeferred

The request was queued for user-space handling

kOSKextReturnDeferred is a kernel-only result. XNU defines it as an operation posted asynchronously to user space. For OSKextLoadKextWithIdentifier, if the kext is not found in the kernel, the request is queued to kextd; the function returns this status instead of claiming that the kext was already loaded.

It is therefore neither a normal load failure nor proof of a completed load. XNU also documents that this API has no general notification or callback mechanism for those load requests, so callers need independent evidence of the later outcome.

How to handle it correctly

References


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

Exit mobile version