What does NTSTATUS 0xC01E0105 (STATUS_GRAPHICS_TRY_AGAIN_NOW) mean?

 
Previous Next
STATUS_GRAPHICS_TRY_AGAIN_LATER STATUS_GRAPHICS_ALLOCATION_INVALID

STATUS_GRAPHICS_TRY_AGAIN_NOW

This is not the same as retry later

The paired graphics status STATUS_GRAPHICS_TRY_AGAIN_NOW denotes a transient condition where the caller is expected to retry immediately. It should still be handled as a bounded protocol step: retain the same operation context and stop if the retry no longer observes the expected state.

Check what changed between attempts

Log the operation and relevant handle or allocation state before each retry. If repeated immediate retries continue, treat that as evidence of an incorrect state transition, an unresolved synchronization condition, or a driver defect rather than turning the loop into an unbounded busy wait.

References


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