21 lines
526 B
C
21 lines
526 B
C
#ifndef _EXTERN_CMD_HG
|
|
#define _EXTERN_CMD_HG
|
|
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <skygw_utils.h>
|
|
#include <log_manager.h>
|
|
#define MAXSCALE_EXTCMD_ARG_MAX 256
|
|
|
|
typedef struct extern_cmd_t{
|
|
char* parameters[MAXSCALE_EXTCMD_ARG_MAX]; /*< Command arguments */
|
|
int n_exec; /*< Number of times executed */
|
|
pid_t child; /*< PID of the child process */
|
|
}EXTERNCMD;
|
|
|
|
EXTERNCMD* externcmd_allocate(char* argstr);
|
|
void externcmd_free(EXTERNCMD* cmd);
|
|
int externcmd_execute(EXTERNCMD* cmd);
|
|
#endif
|