| Anterior | Siguiente |
| STATUS_IMAGE_NOT_AT_BASE | STATUS_SEGMENT_NOTIFICATION |
STATUS_RXACT_STATE_CREATED
Qué significa STATUS_RXACT_STATE_CREATED
STATUS_RXACT_STATE_CREATED es informativo: no existía state previo y el runtime preparó un nuevo context para acumular cambios. No significa que los cambios ya estén committed ni durable.
El caller debe conservar el context y seguir el lifecycle esperado hasta commit/abort. Reinicializar repetidamente el mismo subtree puede ocultar bugs de ownership.
Qué comprobar
- Retenga el context devuelto para la misma unidad de trabajo.
- No confunda creación de state con commit.
- Revise duplicate initialization sobre el mismo subtree.
- Complete explícitamente commit o abort según el resultado del workflow.
Referencias técnicas
- Microsoft Open Specifications: NTSTATUS values
- ReactOS RTL source: RXACT implementation
- ReactOS source: Configuration Manager
- Microsoft Windows SDK metadata: ntstatus.h
¿Buscas un código diferente? Buscar otro código de estado o error.
