Moved tasks/* into containers/posix

This commit is contained in:
Bahadir Balban
2009-08-25 14:34:21 +03:00
parent 117e3482b6
commit 87e2aeaf58
516 changed files with 27 additions and 27 deletions

View File

@@ -0,0 +1,25 @@
/*
* Definitions for executables
*
* Copyright (C) 2008 Bahadir Balban
*/
#ifndef __EXEC_H__
#define __EXEC_H__
/*
* This presents extra executable file information that is
* not present in the tcb, in a generic format.
*/
struct exec_file_desc {
unsigned long text_offset; /* File offset of text section */
unsigned long data_offset; /* File offset of data section */
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__ */