boot image - no need for entry point

- removes the initial_pc from struct boot_image. It is always set
  to 0 and RS uses a.out headers.
This commit is contained in:
Tomas Hruby
2010-05-18 13:51:46 +00:00
parent b09bcf6779
commit dcc81d73e8
4 changed files with 21 additions and 24 deletions

View File

@@ -4,8 +4,6 @@
#include <minix/com.h>
#include <machine/interrupt.h>
typedef _PROTOTYPE( void task_t, (void) );
/* Process table and system property related types. */
typedef int proc_nr_t; /* process table entry number */
typedef short sys_id_t; /* system process index */
@@ -15,7 +13,6 @@ typedef struct { /* bitmap for system indexes */
struct boot_image {
proc_nr_t proc_nr; /* process number to use */
task_t *initial_pc; /* start function for tasks */
int flags; /* process flags */
unsigned char quantum; /* quantum (tick count) */
int priority; /* scheduling priority */