diff options
author | Jes Sorensen <Jes.Sorensen@redhat.com> | 2010-10-26 10:39:25 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-10-30 08:02:39 +0000 |
commit | bc4a957c46acd8f4b2f2ffe6b2f90512325924dd (patch) | |
tree | e386df6724907c5e1b4bdf6535e4245c830086fe /os-posix.c | |
parent | ff753bb9a60780e7af93288ac55bf1277a30cff7 (diff) | |
download | qemu-bc4a957c46acd8f4b2f2ffe6b2f90512325924dd.zip qemu-bc4a957c46acd8f4b2f2ffe6b2f90512325924dd.tar.gz qemu-bc4a957c46acd8f4b2f2ffe6b2f90512325924dd.tar.bz2 |
Separate qemu_pidfile() into OS specific versions
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'os-posix.c')
-rw-r--r-- | os-posix.c | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -361,3 +361,24 @@ int qemu_eventfd(int fds[2]) return qemu_pipe(fds); } + +int qemu_create_pidfile(const char *filename) +{ + char buffer[128]; + int len; + int fd; + + fd = qemu_open(filename, O_RDWR | O_CREAT, 0600); + if (fd == -1) { + return -1; + } + if (lockf(fd, F_TLOCK, 0) == -1) { + return -1; + } + len = snprintf(buffer, sizeof(buffer), "%ld\n", (long)getpid()); + if (write(fd, buffer, len) != len) { + return -1; + } + + return 0; +} |