1 /****************************************************************************
3 * GNAT COMPILER COMPONENTS *
7 * C Implementation File *
9 * Copyright (C) 2002-2012, 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 3, 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. *
18 * As a special exception under Section 7 of GPL version 3, you are granted *
19 * additional permissions described in the GCC Runtime Library Exception, *
20 * version 3.1, as published by the Free Software Foundation. *
22 * You should have received a copy of the GNU General Public License and *
23 * a copy of the GCC Runtime Library Exception along with this program; *
24 * see the files COPYING3 and COPYING.RUNTIME respectively. If not, see *
25 * <http://www.gnu.org/licenses/>. *
27 * GNAT was originally developed by the GNAT team at New York University. *
28 * Extensive contributions were provided by Ada Core Technologies Inc. *
30 ****************************************************************************/
35 #endif /* __vxworks */
50 #define GNAT_MAX_PATH_LEN MAXPATHLEN
52 #define GNAT_MAX_PATH_LEN 256
58 /* This function provides a portable binding to the mkdir function. */
61 __gnat_mkdir (char *dir_name
, int encoding ATTRIBUTE_UNUSED
)
63 #if defined (__vxworks) && !(defined (__RTP__) && (_WRS_VXWORKS_MINOR != 0))
64 return mkdir (dir_name
);
65 #elif defined (__MINGW32__)
66 TCHAR wname
[GNAT_MAX_PATH_LEN
+ 2];
68 if (encoding
== Encoding_Unspecified
)
69 S2WSC (wname
, dir_name
, GNAT_MAX_PATH_LEN
);
70 else if (encoding
== Encoding_UTF8
)
71 S2WSU (wname
, dir_name
, GNAT_MAX_PATH_LEN
);
73 S2WS (wname
, dir_name
, GNAT_MAX_PATH_LEN
);
75 return _tmkdir (wname
);
77 return mkdir (dir_name
, S_IRWXU
| S_IRWXG
| S_IRWXO
);