Rev 3343 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3343 | Rev 3492 | ||
|---|---|---|---|
| Line 38... | Line 38... | ||
| 38 | 38 | ||
| 39 | #include <sys/types.h> |
39 | #include <sys/types.h> |
| 40 | 40 | ||
| 41 | typedef void (*entry_point_t)(void); |
41 | typedef void (*entry_point_t)(void); |
| 42 | 42 | ||
| - | 43 | /** Program Control Block. |
|
| 43 | /** |
44 | * |
| 44 | * Holds pointers to data passed from the program loader to the program |
45 | * Holds pointers to data passed from the program loader to the program |
| 45 | * and/or to the dynamic linker. This includes the program entry point, |
46 | * and/or to the dynamic linker. This includes the program entry point, |
| 46 | * arguments, environment variables etc. |
47 | * arguments, environment variables etc. |
| 47 | */ |
48 | */ |
| 48 | typedef struct { |
49 | typedef struct { |