From da53802c96a59a990859706219398dce709ba1b3 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Mon, 26 Oct 2009 12:21:07 +0100 Subject: implemented solution for cancel at shutdown/unprocessed entries We do now enqueue those objects that are left unprocessed. This enables us to delete the full batch, what is exactly what we need to do. --- runtime/batch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/batch.h') diff --git a/runtime/batch.h b/runtime/batch.h index 031718a7..2b3aa83e 100644 --- a/runtime/batch.h +++ b/runtime/batch.h @@ -34,7 +34,7 @@ typedef enum { BATCH_STATE_RDY = 0, /* object ready for processing */ BATCH_STATE_BAD = 1, /* unrecoverable failure while processing, do NOT resubmit to same action */ - BATCH_STATE_SUB = 2, /* message submitted for processing, outcome yet unkonwn */ + BATCH_STATE_SUB = 2, /* message submitted for processing, outcome yet unknown */ BATCH_STATE_COMM = 3, /* message successfully commited */ BATCH_STATE_DISC = 4, /* discarded - processed OK, but do not submit to any other action */ } batch_state_t; -- cgit