X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=misc%2Ftest_vm%2Finclude%2Fgeekos%2Fargblock.h;fp=misc%2Ftest_vm%2Finclude%2Fgeekos%2Fargblock.h;h=0000000000000000000000000000000000000000;hp=54fac8b192adf5ac4583dd436d73ad706c5e9ca7;hb=a70930549d1b741704dd7af4e6bb0e89f6f8a519;hpb=afb634a80f946634454a5d067a92aa600227bd93 diff --git a/misc/test_vm/include/geekos/argblock.h b/misc/test_vm/include/geekos/argblock.h deleted file mode 100644 index 54fac8b..0000000 --- a/misc/test_vm/include/geekos/argblock.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Create and extract the command line argument block for a process - * Copyright (c) 2003 David H. Hovemeyer - * $Revision: 1.1 $ - * - * This is free software. You are permitted to use, - * redistribute, and modify it as specified in the file "COPYING". - */ - -#ifndef GEEKOS_ARGBLOCK_H -#define GEEKOS_ARGBLOCK_H - -/** - * Header struct for accessing argument block from user mode. - * Just cast the address of the argument block passed by - * the kernel to a pointer to this struct. - */ -struct Argument_Block { - int argc; - char **argv; -}; - -#ifdef GEEKOS - -/* - * Functions used by the kernel to create the argument block. - */ -void Get_Argument_Block_Size(const char *command, unsigned *numArgs, ulong_t *argBlockSize); -void Format_Argument_Block(char *argBlock, unsigned numArgs, ulong_t userAddress, - const char *command); - -#endif - -#endif /* GEEKOS_ARGBLOCK_H */