diff options
author | Richard Jones <rjones@trick.home.annexia.org> | 2009-06-04 14:58:14 +0100 |
---|---|---|
committer | Richard Jones <rjones@trick.home.annexia.org> | 2009-06-04 15:06:27 +0100 |
commit | 2ef06eacc2be08b0268c98a4d157176aff9356e0 (patch) | |
tree | 9d4821cde333af8eaf2b147752f64c6eb79ff732 /daemon | |
parent | 9cedbba1a498e2a31be103c3adcd2df1ff9168c2 (diff) | |
download | libguestfs-2ef06eacc2be08b0268c98a4d157176aff9356e0.tar.gz libguestfs-2ef06eacc2be08b0268c98a4d157176aff9356e0.tar.xz libguestfs-2ef06eacc2be08b0268c98a4d157176aff9356e0.zip |
Added 'sleep' command.
Diffstat (limited to 'daemon')
-rw-r--r-- | daemon/Makefile.am | 1 | ||||
-rw-r--r-- | daemon/sleep.c | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/daemon/Makefile.am b/daemon/Makefile.am index e0da08cc..a8ddd672 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -45,6 +45,7 @@ guestfsd_SOURCES = \ pingdaemon.c \ proto.c \ sfdisk.c \ + sleep.c \ stat.c \ strings.c \ stubs.c \ diff --git a/daemon/sleep.c b/daemon/sleep.c new file mode 100644 index 00000000..2cf3ff74 --- /dev/null +++ b/daemon/sleep.c @@ -0,0 +1,35 @@ +/* libguestfs - the guestfsd daemon + * Copyright (C) 2009 Red Hat Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +#include <config.h> + +#include <stdio.h> +#include <stdlib.h> +#include <unistd.h> + +#include "../src/guestfs_protocol.h" +#include "daemon.h" +#include "actions.h" + +int +do_sleep (int secs) +{ + /* According to the man page, this syscall never fails. */ + (void) sleep (secs); + return 0; +} |