Added env and arg passing to execve

This commit is contained in:
Bahadir Balban
2008-11-25 12:52:28 +02:00
parent 159944b092
commit 783b1e025f
2 changed files with 21 additions and 12 deletions

View File

@@ -16,4 +16,10 @@ struct exec_file_desc {
unsigned long bss_offset; /* File offset of bss section */
};
struct args_struct {
int argc;
char **argv;
int size; /* Size of strings + string pointers */
};
#endif /* __EXEC_H__ */