From e30cc5e9e5fc0aed7c30245daab1e922a90460c0 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 5 Sep 2017 22:52:35 +0100 Subject: [PATCH] [job] Allow jobs to report an arbitrary status message Signed-off-by: Michael Brown --- src/include/ipxe/job.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/include/ipxe/job.h b/src/include/ipxe/job.h index 7e1bd810..c01bd174 100644 --- a/src/include/ipxe/job.h +++ b/src/include/ipxe/job.h @@ -28,6 +28,8 @@ struct job_progress { * account before calculating @c completed/total. */ unsigned long total; + /** Message (optional) */ + char message[32]; }; extern int job_progress ( struct interface *intf,