diff options
Diffstat (limited to 'include/block/blockjob.h')
-rw-r--r-- | include/block/blockjob.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/block/blockjob.h b/include/block/blockjob.h index 97b86f109f..934bf1ce2d 100644 --- a/include/block/blockjob.h +++ b/include/block/blockjob.h @@ -212,6 +212,16 @@ struct BlockJob { BlockJob *block_job_next(BlockJob *job); /** + * block_job_get: + * @id: The id of the block job. + * + * Get the block job identified by @id (which must not be %NULL). + * + * Returns the requested job, or %NULL if it doesn't exist. + */ +BlockJob *block_job_get(const char *id); + +/** * block_job_create: * @job_type: The class object for the newly-created job. * @bs: The block |