Generated from cl_system.h with ROBODoc v3.2.3 on Sat Jan 18 07:05:18 2003

TABLE OF CONTENTS

  1. Component Library System/cl_user_mode_helper
  2. Component Library/System

Component Library System/cl_user_mode_helper

NAME
    cl_user_mode_helper

DESCRIPTION
    Execute shell commands from within the kernel.

int 
cl_user_mode_helper(
    IN char *p_shell_command, 
    IN char **argv, 
    IN char **envp );

PARAMETERS
    p_shell_command
        [in] The shell command to execute. Specified a relative or absolut
             path to the command such as "/bin/rm"
    argv
        [in] Array of arguments for the command (the standard argument
             vector). For instance "-r" and "-f" could be possible
             arguments to "/bin/rm"
        [in] Array of environment variables. Usually contains things
             like PATH etc.
RETURN VALUE
    Return value from the shell command, returned by the shell.

NOTES
    
SEE ALSO

Component Library/System

NAME
    System

DESCRIPTION
    Provides a system utility to execute shell commands from within
    the kernel (eg. /bin/rm etc)