aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxl/libxl_exec.c
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2010-07-28 16:18:44 +0100
committerIan Campbell <ian.campbell@citrix.com>2010-07-28 16:18:44 +0100
commit528ad3b6e29be4807f4a1698f35bf46be8e525e5 (patch)
tree5cc8da4273e1f33ef8444870c36e127990a02acc /tools/libxl/libxl_exec.c
parent891c9ebad752ce367c9e639b8edb48aaba462338 (diff)
downloadxen-528ad3b6e29be4807f4a1698f35bf46be8e525e5.tar.gz
xen-528ad3b6e29be4807f4a1698f35bf46be8e525e5.tar.bz2
xen-528ad3b6e29be4807f4a1698f35bf46be8e525e5.zip
libxl: consistently use typedef struct {} libxl_$type
typedef struct seems to be the dominant idiom in the mixture currently in use. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/libxl/libxl_exec.c')
-rw-r--r--tools/libxl/libxl_exec.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/tools/libxl/libxl_exec.c b/tools/libxl/libxl_exec.c
index 86dacd3883..c488e38975 100644
--- a/tools/libxl/libxl_exec.c
+++ b/tools/libxl/libxl_exec.c
@@ -57,7 +57,7 @@ void libxl_exec(int stdinfd, int stdoutfd, int stderrfd, char *arg0, char **args
_exit(-1);
}
-void libxl_report_child_exitstatus(struct libxl_ctx *ctx,
+void libxl_report_child_exitstatus(libxl_ctx *ctx,
xentoollog_level level,
const char *what, pid_t pid, int status)
{
@@ -88,7 +88,7 @@ void libxl_report_child_exitstatus(struct libxl_ctx *ctx,
}
}
-int libxl_spawn_spawn(struct libxl_ctx *ctx,
+int libxl_spawn_spawn(libxl_ctx *ctx,
libxl_device_model_starting *starting,
const char *what,
void (*intermediate_hook)(void *for_spawn,
@@ -97,7 +97,7 @@ int libxl_spawn_spawn(struct libxl_ctx *ctx,
pid_t child, got;
int status;
pid_t intermediate;
- struct libxl_spawn_starting *for_spawn = starting->for_spawn;
+ libxl_spawn_starting *for_spawn = starting->for_spawn;
if (for_spawn) {
for_spawn->what = libxl_strdup(ctx, what);
@@ -135,8 +135,8 @@ int libxl_spawn_spawn(struct libxl_ctx *ctx,
? WTERMSIG(status)+128 : -1);
}
-static void report_spawn_intermediate_status(struct libxl_ctx *ctx,
- struct libxl_spawn_starting *for_spawn,
+static void report_spawn_intermediate_status(libxl_ctx *ctx,
+ libxl_spawn_starting *for_spawn,
int status)
{
if (!WIFEXITED(status)) {
@@ -149,8 +149,8 @@ static void report_spawn_intermediate_status(struct libxl_ctx *ctx,
}
}
-int libxl_spawn_detach(struct libxl_ctx *ctx,
- struct libxl_spawn_starting *for_spawn)
+int libxl_spawn_detach(libxl_ctx *ctx,
+ libxl_spawn_starting *for_spawn)
{
int r, status;
pid_t got;
@@ -182,9 +182,9 @@ int libxl_spawn_detach(struct libxl_ctx *ctx,
return rc;
}
-int libxl_spawn_check(struct libxl_ctx *ctx, void *for_spawn_void)
+int libxl_spawn_check(libxl_ctx *ctx, void *for_spawn_void)
{
- struct libxl_spawn_starting *for_spawn = for_spawn_void;
+ libxl_spawn_starting *for_spawn = for_spawn_void;
pid_t got;
int status;