diff options
author | Michal Privoznik <mprivozn@redhat.com> | 2016-09-27 17:24:56 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-10-04 10:00:27 +0200 |
commit | 7dc9ae4339faa97e89daadb2e1098147ab4aadc8 (patch) | |
tree | 14fe0cb005009fd3de9ac1cb78dfb9f6765f6d95 /util/oslib-win32.c | |
parent | 6a7b2b21008f271e7a91e937e521e22f94579bb9 (diff) | |
download | qemu-7dc9ae4339faa97e89daadb2e1098147ab4aadc8.tar.gz qemu-7dc9ae4339faa97e89daadb2e1098147ab4aadc8.tar.bz2 qemu-7dc9ae4339faa97e89daadb2e1098147ab4aadc8.zip |
util: Introduce qemu_get_pid_name
This is a small helper that tries to fetch binary name for given
PID.
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Message-Id: <4d75d475c1884f8e94ee8b1e57273ddf3ed68bf7.1474987617.git.mprivozn@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'util/oslib-win32.c')
-rw-r--r-- | util/oslib-win32.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/util/oslib-win32.c b/util/oslib-win32.c index 4c1dcf1e66..d09863cc9d 100644 --- a/util/oslib-win32.c +++ b/util/oslib-win32.c @@ -575,6 +575,13 @@ int qemu_read_password(char *buf, int buf_size) } +char *qemu_get_pid_name(pid_t pid) +{ + /* XXX Implement me */ + abort(); +} + + pid_t qemu_fork(Error **errp) { errno = ENOSYS; |