1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 2003 Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 2, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
25 ------------------------------------------------------------------------------
27 -- This package is used by gnatmake and by the Project Manager to create
28 -- temporary files. If environment variable TMPDIR is defined and
29 -- designates an absolute path, temporary files are create in this directory.
30 -- Otherwise, temporary files are created in the current working directory.
32 with GNAT
.OS_Lib
; use GNAT
.OS_Lib
;
33 with Types
; use Types
;
37 procedure Create_Temp_File
38 (FD
: out File_Descriptor
;
40 -- Create a temporary text file and return its file descriptor and
41 -- its path name as a Name_Id. If environment variable TMPDIR is defined
42 -- and its value is an absolute path, the temp file is created in the
43 -- directory designated by TMPDIR, otherwise, it is created in the current
44 -- directory. If temporary file cannot be created, FD gets the value
45 -- Invalid_FD and Name gets the value No_Name.