¿Qué significa el código NTSTATUS 0xC000014E (STATUS_NO_EVENT_PAIR)?

 
Anterior Siguiente
STATUS_REGISTRY_IO_FAILED STATUS_UNRECOGNIZED_VOLUME

STATUS_NO_EVENT_PAIR

Qué significa STATUS_NO_EVENT_PAIR

Event pairs son un mecanismo nativo/legacy de sincronización con estado asociado al thread. Este status no significa que un ordinary event esté simplemente unsignaled.

Su aparición suele apuntar a initialization/lifecycle de código nativo o de compatibilidad. Preserve la system service exacta y el thread que esperaba tener la asociación.

Qué comprobar

  • Registre native API y thread ID.
  • Tracee creación/asociación del event pair.
  • Busque thread reuse o cleanup prematuro.
  • No sustituya por otro worker sin establecer el estado requerido.

Referencias técnicas


¿Buscas un código diferente? Buscar otro código de estado o error.