a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncextern int execv ( const char *command, char * const argv[] );
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * Execute command
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * @v command Command name
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * @v arg ... Argument list (starting with argv[0])
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * @ret rc Command exit status
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * This is a front end to execv().
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync/* Pick up udelay() */
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * sleep() prototype is defined by POSIX.1. usleep() prototype is
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * defined by 4.3BSD. udelay() and mdelay() prototypes are chosen to
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * be reasonably sensible.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncstatic inline __always_inline void usleep ( unsigned long usecs ) {
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync#endif /* _UNISTD_H */