From: Michael Brown Date: Tue, 5 Sep 2017 21:52:35 +0000 (+0100) Subject: [job] Allow jobs to report an arbitrary status message X-Git-Tag: v1.20.1~159 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e30cc5e9e5fc0aed7c30245daab1e922a90460c0;p=thirdparty%2Fipxe.git [job] Allow jobs to report an arbitrary status message Signed-off-by: Michael Brown --- diff --git a/src/include/ipxe/job.h b/src/include/ipxe/job.h index 7e1bd8109..c01bd1740 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,