| Anterior | Siguiente |
| STATUS_UNABLE_TO_FREE_VM | STATUS_INVALID_SYSTEM_SERVICE |
STATUS_UNABLE_TO_DELETE_SECTION
Qué significa STATUS_UNABLE_TO_DELETE_SECTION
Las section objects pueden estar respaldadas por archivo o pagefile y tener handles, vistas mapeadas, image mappings y referencias del kernel en varios procesos. Cerrar un único handle no garantiza que la sección haya quedado sin usuarios.
Enumere vistas y handles en los procesos implicados y determine si se trata de una imagen cargada, memoria compartida o file mapping. Para imágenes, loader y cache manager también participan en el lifecycle. Forzar el borrado del archivo subyacente no identifica quién conserva la referencia.
Qué comprobar
- Enumere section handles y mapped views, incluidos handles duplicados o heredados.
- Desmapee las vistas antes de cerrar el último mapping handle.
- Identifique si loader, cache o I/O mantiene todavía el backing object.
Referencias técnicas
- Microsoft Open Specifications: NTSTATUS values
- Microsoft: ZwCreateSection
- Microsoft: MapViewOfFile
- Microsoft: CreateFileMapping
¿Buscas un código diferente? Buscar otro código de estado o error.
