package qmp

  1. Overview
  2. Docs
module Driver : sig ... end
type t = {
  1. id : string;
  2. socket_id : int;
  3. core_id : int;
  4. thread_id : int;
}
val id_of : socket_id:int -> core_id:int -> thread_id:int -> string
type hotpluggable_t = {
  1. driver_type : string;
  2. vcpus_count : int;
  3. props : t;
  4. qom_path : string option;
}