Blame lib/msvc-nothrow.c

Packit Service fdd496
/* Wrappers that don't throw invalid parameter notifications
Packit Service fdd496
   with MSVC runtime libraries.
Packit Service fdd496
   Copyright (C) 2011-2017 Free Software Foundation, Inc.
Packit Service fdd496
Packit Service fdd496
   This program is free software; you can redistribute it and/or modify
Packit Service fdd496
   it under the terms of the GNU General Public License as published by
Packit Service fdd496
   the Free Software Foundation; either version 3, or (at your option)
Packit Service fdd496
   any later version.
Packit Service fdd496
Packit Service fdd496
   This program is distributed in the hope that it will be useful,
Packit Service fdd496
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service fdd496
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service fdd496
   GNU General Public License for more details.
Packit Service fdd496
Packit Service fdd496
   You should have received a copy of the GNU General Public License along
Packit Service fdd496
   with this program; if not, see <http://www.gnu.org/licenses/>.  */
Packit Service fdd496
Packit Service fdd496
#include <config.h>
Packit Service fdd496
Packit Service fdd496
/* Specification.  */
Packit Service fdd496
#include "msvc-nothrow.h"
Packit Service fdd496
Packit Service fdd496
/* Get declarations of the native Windows API functions.  */
Packit Service fdd496
#define WIN32_LEAN_AND_MEAN
Packit Service fdd496
#include <windows.h>
Packit Service fdd496
Packit Service fdd496
#if HAVE_MSVC_INVALID_PARAMETER_HANDLER
Packit Service fdd496
# include "msvc-inval.h"
Packit Service fdd496
#endif
Packit Service fdd496
Packit Service fdd496
#undef _get_osfhandle
Packit Service fdd496
Packit Service fdd496
#if HAVE_MSVC_INVALID_PARAMETER_HANDLER
Packit Service fdd496
intptr_t
Packit Service fdd496
_gl_nothrow_get_osfhandle (int fd)
Packit Service fdd496
{
Packit Service fdd496
  intptr_t result;
Packit Service fdd496
Packit Service fdd496
  TRY_MSVC_INVAL
Packit Service fdd496
    {
Packit Service fdd496
      result = _get_osfhandle (fd);
Packit Service fdd496
    }
Packit Service fdd496
  CATCH_MSVC_INVAL
Packit Service fdd496
    {
Packit Service fdd496
      result = (intptr_t) INVALID_HANDLE_VALUE;
Packit Service fdd496
    }
Packit Service fdd496
  DONE_MSVC_INVAL;
Packit Service fdd496
Packit Service fdd496
  return result;
Packit Service fdd496
}
Packit Service fdd496
#endif