| Anterior | Siguiente |
| STATUS_INVALID_PIPE_STATE | STATUS_ILLEGAL_FUNCTION |
STATUS_PIPE_BUSY
Qué significa STATUS_PIPE_BUSY
STATUS_PIPE_BUSY es un resultado de state/scheduling del named-pipe path. Puede haber I/O queued, otra operación overlapped o todas las instancias disponibles ocupadas según el contexto.
El diagnóstico requiere pipe name, endpoint, instance y mode. Reintentar sin espera/backoff puede aumentar contention y no cambia el estado.
Qué comprobar
- Capture pipe name, server/client end e instance count.
- Registre blocking/nonblocking, byte/message y overlapped state.
- Compruebe I/O ya pendiente en el mismo handle.
- Use wait/backoff o cree más instances solo si el diseño del server lo permite.
Referencias técnicas
- Microsoft Open Specifications: NTSTATUS values
- Microsoft: Named Pipes
- Microsoft: Named Pipe Operations
¿Buscas un código diferente? Buscar otro código de estado o error.
