diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-12-13 10:19:55 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-12-13 10:19:55 +0000 |
commit | 51f168eb1338af75aff54518b52f8dd577014060 (patch) | |
tree | 824f194b17e9e4fc20003b76cd51c67d9f3feadd /gcc/ada/adaint.h | |
parent | ed683f94ad07898441d7d0190a5b282be4f3d7bf (diff) | |
download | gcc-51f168eb1338af75aff54518b52f8dd577014060.tar.gz |
2007-12-06 Jose Ruiz <ruiz@adacore.com>
* adaint.h: (__gnat_plist_init): Not defined for RTX.
* initialize.c (__gnat_initialize): Do not call __gnat_plist_init for
RTX systems.
* Makefile.in: Add new files s-tasinf-linux.ads and s-tasinf-linux.adb.
(LIBGNAT_TARGET_PAIRS, MISCLIB, THREADSLIB,
EXTRA_GNATRTL_NONTASKING_OBJS, EXTRA_GNATRTL_TASKING_OBJS,
GNATLIB_SHARED for RTX run time): Use the versions required by RTX.
* mingw32.h:
Do not define GNAT_UNICODE_SUPPORT for RTX since it is not supported.
* sysdep.c (winflush_function for RTX): Procedure that does nothing
since we only have problems with Windows 95/98, which are not
supported by RTX.
(__gnat_ttyname): Return the empty string on Nucleus, just as
done on vxworks.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@130816 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/adaint.h')
-rw-r--r-- | gcc/ada/adaint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/adaint.h b/gcc/ada/adaint.h index 131fe1f2dd5..77724cdd794 100644 --- a/gcc/ada/adaint.h +++ b/gcc/ada/adaint.h @@ -168,7 +168,7 @@ extern int __gnat_dup2 (int, int); extern void __gnat_os_filename (char *, char *, char *, int *, char *, int *); -#ifdef __MINGW32__ +#if defined (__MINGW32__) && !defined (RTX) extern void __gnat_plist_init (void); #endif |