| Предыдущий | Следующий |
| ERROR_NO_SYSTEM_RESOURCES | ERROR_PAGED_SYSTEM_RESOURCES |
ERROR_NONPAGED_SYSTEM_RESOURCES
Что означает ERROR_NONPAGED_SYSTEM_RESOURCES
ERROR_NONPAGED_SYSTEM_RESOURCES — недостаточно ресурсов невыгружаемой системной памяти для выполнения операции.
Что проверить
Зафиксируйте memory pressure/commit и тип ресурса памяти, названный кодом, в момент отказа.
- Для page/in-page error проверьте backing storage и исходный I/O status; для pool exhaustion — потребление paged/nonpaged pool по владельцам.
- Если ошибка повторяется под нагрузкой, ищите утечку или отказ backing storage, а не только увеличивайте объём памяти.
Исходная формулировка
Windows exhausted a nonpaged kernel resource that must remain resident in physical memory.
the condition develops gradually and survives application restarts
Use Performance Monitor or equivalent counters to establish whether nonpaged pool is actually rising. Then use PoolMon or kernel debugging tools to identify tags responsible for growth. Map suspicious tags to binaries and compare the timeline with driver updates, device resets, connection storms, or repeated mount/unmount activity.
a reboot clears the symptom until the same workload accumulates again
ERROR_PAGED_SYSTEM_RESOURCES identifies pageable kernel-pool pressure. ERROR_COMMITMENT_LIMIT concerns system commit. Error 1451 is specifically useful when the allocation must remain resident and kernel or driver behavior is the main suspect.
Технические ссылки
Нужно найти другой код? Найти другой код состояния или ошибки.