10extern int execv (
const char *
command,
char *
const argv[] );
21#define execl( command, arg, ... ) ( { \
22 char * const argv[] = { (arg), ## __VA_ARGS__ }; \
23 int rc = execv ( (command), argv ); \
#define __always_inline
Declare a function to be always inline.
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
void udelay(unsigned long usecs)
Delay for a fixed number of microseconds.
int execv(const char *command, char *const argv[])
Execute command.
static __always_inline void usleep(unsigned long usecs)