GRASS 8 Programmer's Manual 8.6.0dev(2026)-4bb960b182
Loading...
Searching...
No Matches
defs/spawn.h
Go to the documentation of this file.
1#ifndef GRASS_SPAWNDEFS_H
2#define GRASS_SPAWNDEFS_H
3
4extern int G_spawn(const char *command, ...);
5extern int G_vspawn_ex(const char *command, const char **args);
6extern int G_spawn_ex(const char *command, ...);
7extern int G_wait(int i_pid);
8
9#endif
int G_vspawn_ex(const char *command, const char **args)
Spawn new process based on command.
Definition spawn.c:877
int G_wait(int i_pid)
Wait for a spawned process to finish.
Definition spawn.c:963
int G_spawn(const char *command,...)
Spawn new process based on command.
Definition spawn.c:918
int G_spawn_ex(const char *command,...)
Spawn new process based on command.
Definition spawn.c:897