aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/env.c
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2009-06-21 15:11:41 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2009-06-21 15:11:41 +0200
commit4f91a2557f88fd788380e3059bb7f475418002a6 (patch)
tree87c0a4e21c018577dc730113e375474d9d50f886 /gcc/ada/env.c
parentc64c5552f1cd91d9f8c70ae876ab6071433972b5 (diff)
downloadgcc-4f91a2557f88fd788380e3059bb7f475418002a6.zip
gcc-4f91a2557f88fd788380e3059bb7f475418002a6.tar.gz
gcc-4f91a2557f88fd788380e3059bb7f475418002a6.tar.bz2
[multiple changes]
2009-06-21 Ed Falis <falis@adacore.com> * env.c (__gnat_environ): return NULL for vThreads - unimplemented 2009-06-21 Eric Botcazou <ebotcazou@adacore.com> * einfo.ads: Update comments. 2009-06-21 Hristian Kirtchev <kirtchev@adacore.com> * sem_disp.adb (Check_Direct_Call): New routine. Dispatching calls where the controlling formal is of private class-wide type whose completion is a synchronized type can be converted into direct calls. 2009-06-21 Vincent Celier <celier@adacore.com> * gnatcmd.adb (Check_Files): When all sources of the project are to be indicated to gnatcheck, gnatpp or gnatmetric, always specify the list of sources using -files=, so that the distinction can be made by the tool of a call with no source (to display the usage) from a call with a project file that contains no source. 2009-06-21 Jerome Lambourg <lambourg@adacore.com> * exp_ch3.adb (Build_Array_Init_Proc): Do not build the init proc in case of VM convention arrays. From-SVN: r148763
Diffstat (limited to 'gcc/ada/env.c')
-rw-r--r--gcc/ada/env.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/env.c b/gcc/ada/env.c
index e6720e3..bcb8bdb 100644
--- a/gcc/ada/env.c
+++ b/gcc/ada/env.c
@@ -190,7 +190,7 @@ __gnat_setenv (char *name, char *value)
char **
__gnat_environ (void)
{
-#if defined (VMS) || defined (RTX)
+#if defined (VMS) || defined (RTX) || defined (VTHREADS)
/* Not implemented */
return NULL;
#elif defined (__APPLE__)