1627f7eb2Smrg /* Wrapper for the unix get{g,p,u}id functions. 2*4c3eb207Smrg Copyright (C) 2004-2020 Free Software Foundation, Inc. 3627f7eb2Smrg 4627f7eb2Smrg This file is part of the GNU Fortran 95 runtime library (libgfortran). 5627f7eb2Smrg 6627f7eb2Smrg Libgfortran is free software; you can redistribute it and/or 7627f7eb2Smrg modify it under the terms of the GNU General Public 8627f7eb2Smrg License as published by the Free Software Foundation; either 9627f7eb2Smrg version 3 of the License, or (at your option) any later version. 10627f7eb2Smrg 11627f7eb2Smrg Libgfortran is distributed in the hope that it will be useful, 12627f7eb2Smrg but WITHOUT ANY WARRANTY; without even the implied warranty of 13627f7eb2Smrg MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14627f7eb2Smrg GNU General Public License for more details. 15627f7eb2Smrg 16627f7eb2Smrg Under Section 7 of GPL version 3, you are granted additional 17627f7eb2Smrg permissions described in the GCC Runtime Library Exception, version 18627f7eb2Smrg 3.1, as published by the Free Software Foundation. 19627f7eb2Smrg 20627f7eb2Smrg You should have received a copy of the GNU General Public License and 21627f7eb2Smrg a copy of the GCC Runtime Library Exception along with this program; 22627f7eb2Smrg see the files COPYING3 and COPYING.RUNTIME respectively. If not, see 23627f7eb2Smrg <http://www.gnu.org/licenses/>. */ 24627f7eb2Smrg 25627f7eb2Smrg #include "libgfortran.h" 26627f7eb2Smrg 27627f7eb2Smrg #if HAVE_UNISTD_H 28627f7eb2Smrg #include <unistd.h> 29627f7eb2Smrg #endif 30627f7eb2Smrg 31627f7eb2Smrg #ifdef __MINGW32__ 32627f7eb2Smrg #define HAVE_GETPID 1 33627f7eb2Smrg #include <process.h> 34627f7eb2Smrg #endif 35627f7eb2Smrg 36627f7eb2Smrg #ifdef HAVE_GETGID 37627f7eb2Smrg extern GFC_INTEGER_4 PREFIX(getgid) (void); 38627f7eb2Smrg export_proto_np(PREFIX(getgid)); 39627f7eb2Smrg 40627f7eb2Smrg GFC_INTEGER_4 PREFIX(getgid)41627f7eb2SmrgPREFIX(getgid) (void) 42627f7eb2Smrg { 43627f7eb2Smrg return getgid (); 44627f7eb2Smrg } 45627f7eb2Smrg #endif 46627f7eb2Smrg 47627f7eb2Smrg #ifdef HAVE_GETPID 48627f7eb2Smrg extern GFC_INTEGER_4 PREFIX(getpid) (void); 49627f7eb2Smrg export_proto_np(PREFIX(getpid)); 50627f7eb2Smrg 51627f7eb2Smrg GFC_INTEGER_4 PREFIX(getpid)52627f7eb2SmrgPREFIX(getpid) (void) 53627f7eb2Smrg { 54627f7eb2Smrg return getpid (); 55627f7eb2Smrg } 56627f7eb2Smrg #endif 57627f7eb2Smrg 58627f7eb2Smrg #ifdef HAVE_GETUID 59627f7eb2Smrg extern GFC_INTEGER_4 PREFIX(getuid) (void); 60627f7eb2Smrg export_proto_np(PREFIX(getuid)); 61627f7eb2Smrg 62627f7eb2Smrg GFC_INTEGER_4 PREFIX(getuid)63627f7eb2SmrgPREFIX(getuid) (void) 64627f7eb2Smrg { 65627f7eb2Smrg return getuid (); 66627f7eb2Smrg } 67627f7eb2Smrg #endif 68