Home
last modified time | relevance | path

Searched refs:MigrationThread (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/migration/
H A Dthreadinfo.h16 typedef struct MigrationThread MigrationThread; typedef
18 struct MigrationThread { struct
21 QLIST_ENTRY(MigrationThread) node; argument
24 MigrationThread *migration_threads_add(const char *name, int thread_id);
25 void migration_threads_remove(MigrationThread *info);
H A Dthreadinfo.c19 static QLIST_HEAD(, MigrationThread) migration_threads;
26 MigrationThread *migration_threads_add(const char *name, int thread_id) in migration_threads_add()
28 MigrationThread *thread = g_new0(MigrationThread, 1); in migration_threads_add()
39 void migration_threads_remove(MigrationThread *thread) in migration_threads_remove()
52 MigrationThread *thread = NULL; in qmp_query_migrationthreads()