diff options
author | David MacKenzie <djm@cygnus> | 1993-12-15 17:08:52 +0000 |
---|---|---|
committer | David MacKenzie <djm@cygnus> | 1993-12-15 17:08:52 +0000 |
commit | f8af9b40a2f10cab37d3db70a60d08808b6ac9d6 (patch) | |
tree | e924744838c3c33d1d2486d82f17308bbd65d0bf | |
parent | 29f5c3cb1531d7812c8cdbec0c28247e58d656d9 (diff) | |
download | gdb-f8af9b40a2f10cab37d3db70a60d08808b6ac9d6.zip gdb-f8af9b40a2f10cab37d3db70a60d08808b6ac9d6.tar.gz gdb-f8af9b40a2f10cab37d3db70a60d08808b6ac9d6.tar.bz2 |
cleanups and mach3 changes
-rw-r--r-- | bfd/ChangeLog | 14 | ||||
-rw-r--r-- | bfd/hosts/std-host.h | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 197b9a3..3469624 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,17 @@ +Wed Dec 15 08:04:16 1993 David J. Mackenzie (djm@thepub.cygnus.com) + + * hosts/std-host.h: (time): Don't declare; conflicts on Mach3. + + * hosts/i386mach3.h (HOST_PAGE_SIZE): Set to 1 to avoid padding. + (HOST_SEGMENT_SIZE): Set to 0 for same reason. + + * i386mach3.c (PAGE_SIZE, SEGMENT_SIZE): Same changes as above. + (TEXT_START_ADDR): Correct. + (MY_backend_data): Define. + + * aoutx.h (adjust_o_magic, adjust_z_magic, adjust_n_magic): + New functions; code moved from aout_<size>_adjust_sizes_and_vmas. + Tue Dec 14 21:48:33 1993 Jeffrey A. Law (law@snake.cs.utah.edu) * som.c (som_begin_writing): Fix thinkos in auxiliary header diff --git a/bfd/hosts/std-host.h b/bfd/hosts/std-host.h index 88db740..dc16af0 100644 --- a/bfd/hosts/std-host.h +++ b/bfd/hosts/std-host.h @@ -76,7 +76,7 @@ extern char *strrchr(); extern char *ctime(); extern int _flsbuf(); extern int fclose(); -/* extern int time(); this causes error with time.h on mach3 */ +/*extern int time(); this causes error with time.h on mach3 */ extern int utimes(); extern int vfprintf(); extern long atol(); |