update from main archive 960818

This commit is contained in:
Ulrich Drepper 1996-08-19 01:07:37 +00:00
parent 404e621688
commit 141ce15d97
3 changed files with 6 additions and 4 deletions

View File

@ -174,7 +174,9 @@ _dl_start_user:
jsr (%a0) jsr (%a0)
| Loop to call _dl_init_next for the next initializer. | Loop to call _dl_init_next for the next initializer.
jra 0b jra 0b
1: | Pass our finalizer function to the user in %a1. 1: | Clear the startup flag.
move.l #0, _dl_starting_up@GOT(%a5)
| Pass our finalizer function to the user in %a1.
move.l _dl_fini@GOT(%a5), %a1 move.l _dl_fini@GOT(%a5), %a1
| Initialize %fp with the stack pointer. | Initialize %fp with the stack pointer.
move.l %sp, %fp move.l %sp, %fp

View File

@ -2,5 +2,5 @@ ifeq ($(subdir), misc)
sysdep_headers += alpha/ptrace.h alpha/regdef.h sysdep_headers += alpha/ptrace.h alpha/regdef.h
sysdep_routines += ieee_get_fp_control ieee_set_fp_control \ sysdep_routines += ieee_get_fp_control ieee_set_fp_control \
sethae ioperm osf_sigprocmask fstatfs statfs sethae ioperm osf_sigprocmask fstatfs statfs llseek
endif endif

View File

@ -52,7 +52,7 @@ I/O address space that's 512MB large!). */
#define vuip volatile unsigned int * #define vuip volatile unsigned int *
#define JENSEN_IO_BASE (0xfffffc0300000000UL) #define JENSEN_IO_BASE (0xfffffc0300000000UL)
#define JENSEN_MEM (0xfffffc0200000000UL) /* sparse!! */ #define JENSEN_SPARSE_MEM (0xfffffc0200000000UL)
/* /*
* With respect to the I/O architecture, APECS and LCA are identical, * With respect to the I/O architecture, APECS and LCA are identical,
@ -94,7 +94,7 @@ static struct platform {
{"EB64+", IOSYS_APECS, APECS_DENSE_MEM, APECS_SPARSE_MEM}, {"EB64+", IOSYS_APECS, APECS_DENSE_MEM, APECS_SPARSE_MEM},
{"EB66", IOSYS_APECS, APECS_DENSE_MEM, APECS_SPARSE_MEM}, {"EB66", IOSYS_APECS, APECS_DENSE_MEM, APECS_SPARSE_MEM},
{"EB66P", IOSYS_APECS, APECS_DENSE_MEM, APECS_SPARSE_MEM}, {"EB66P", IOSYS_APECS, APECS_DENSE_MEM, APECS_SPARSE_MEM},
{"Jensen", IOSYS_JENSEN, JENSEN_MEM, JENSEN_MEM}, {"Jensen", IOSYS_JENSEN, 0, JENSEN_SPARSE_MEM},
{"Mikasa", IOSYS_APECS, APECS_DENSE_MEM, APECS_SPARSE_MEM}, {"Mikasa", IOSYS_APECS, APECS_DENSE_MEM, APECS_SPARSE_MEM},
{"Mustang", IOSYS_APECS, APECS_DENSE_MEM, APECS_SPARSE_MEM}, {"Mustang", IOSYS_APECS, APECS_DENSE_MEM, APECS_SPARSE_MEM},
{"Noname", IOSYS_APECS, APECS_DENSE_MEM, APECS_SPARSE_MEM}, {"Noname", IOSYS_APECS, APECS_DENSE_MEM, APECS_SPARSE_MEM},