| Previous | Next |
| MANUALLY_INITIATED_CRASH | WORKER_INVALID |
RESOURCE_NOT_OWNED
The RESOURCE_NOT_OWNED bug check has a value of 0x000000E3. This indicates that a thread tried to release a resource it did not own.
RESOURCE_NOT_OWNED Parameters
| Parameter | Description |
|---|---|
1 |
Address of resource |
2 |
Address of thread |
3 |
Address of owner table (if it exists) |
4 |
Reserved |
Diagnostic focus
Parameter 1 is the resource, parameter 2 the releasing thread, and parameter 3 the owner table. Compare current ownership with that thread acquisition history. Typical causes are unmatched acquire and release paths, exception cleanup that releases twice, or resource state overwritten by unrelated memory corruption.
References
Looking for a different code? Search another status or error code.