diff options
author | Emanuele Giuseppe Esposito | 2022-09-26 11:31:56 +0200 |
---|---|---|
committer | Kevin Wolf | 2022-10-07 12:11:41 +0200 |
commit | 544f4d5258d4e4dd6652d28607b605e7801ed7dd (patch) | |
tree | 0cdae0f4667f7b4ec4de2bb7619c7b7471e93fba /include | |
parent | job.h: categorize fields in struct Job (diff) | |
download | qemu-544f4d5258d4e4dd6652d28607b605e7801ed7dd.tar.gz qemu-544f4d5258d4e4dd6652d28607b605e7801ed7dd.tar.xz qemu-544f4d5258d4e4dd6652d28607b605e7801ed7dd.zip |
job.c: API functions not used outside should be static
job_event_* functions can all be static, as they are not used
outside job.c.
Same applies for job_txn_add_job().
Signed-off-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Message-Id: <20220926093214.506243-4-eesposit@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/job.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/include/qemu/job.h b/include/qemu/job.h index 8530c6a4e1..e3e31e2548 100644 --- a/include/qemu/job.h +++ b/include/qemu/job.h @@ -359,18 +359,6 @@ JobTxn *job_txn_new(void); void job_txn_unref(JobTxn *txn); /** - * @txn: The transaction (may be NULL) - * @job: Job to add to the transaction - * - * Add @job to the transaction. The @job must not already be in a transaction. - * The caller must call either job_txn_unref() or job_completed() to release - * the reference that is automatically grabbed here. - * - * If @txn is NULL, the function does nothing. - */ -void job_txn_add_job(JobTxn *txn, Job *job); - -/** * Create a new long-running job and return it. * * @job_id: The id of the newly-created job, or %NULL for internal jobs @@ -431,12 +419,6 @@ void job_progress_set_remaining(Job *job, uint64_t remaining); */ void job_progress_increase_remaining(Job *job, uint64_t delta); -/** To be called when a cancelled job is finalised. */ -void job_event_cancelled(Job *job); - -/** To be called when a successfully completed job is finalised. */ -void job_event_completed(Job *job); - /** * Conditionally enter the job coroutine if the job is ready to run, not * already busy and fn() returns true. fn() is called while under the job_lock |