1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-01-25 10:03:49 +03:00

libxl: Remove unused macros

Remove unused JOB_MASK and DEFAULT_JOB_MASK macros.

Signed-off-by: Jim Fehlig <jfehlig@suse.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
Jim Fehlig 2021-11-22 10:43:13 -07:00
parent 679824d44a
commit c6d2d2d7a5

View File

@ -27,11 +27,6 @@
#include "virchrdev.h"
#include "virenum.h"
#define JOB_MASK(job) (job == 0 ? 0 : 1 << (job - 1))
#define DEFAULT_JOB_MASK \
(JOB_MASK(LIBXL_JOB_DESTROY) | \
JOB_MASK(LIBXL_JOB_ABORT))
/* Only 1 job is allowed at any time
* A job includes *all* libxl.so api, even those just querying
* information, not merely actions */