VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/win/errvars-win.cpp@ 76409

Last change on this file since 76409 was 70195, checked in by vboxsync, 7 years ago

IPRT/R3: Made the core work on NT 3.51 (still experimental).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
Line 
1/* $Id: errvars-win.cpp 70195 2017-12-18 13:40:26Z vboxsync $ */
2/** @file
3 * IPRT - Save and Restore Error Variables, Windows Ring-3.
4 */
5
6/*
7 * Copyright (C) 2011-2017 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#include <iprt/win/winsock2.h>
32#include <errno.h>
33
34#include <iprt/err.h>
35#include "internal/iprt.h"
36
37#include <iprt/assert.h>
38#include "internal/magics.h"
39#include "internal-r3-win.h"
40
41
42
43RTDECL(PRTERRVARS) RTErrVarsSave(PRTERRVARS pVars)
44{
45 pVars->ai32Vars[0] = RTERRVARS_MAGIC;
46 pVars->ai32Vars[1] = GetLastError();
47 pVars->ai32Vars[2] = g_pfnWSAGetLastError ? g_pfnWSAGetLastError() : WSANOTINITIALISED;
48 pVars->ai32Vars[3] = errno;
49 return pVars;
50}
51
52
53RTDECL(void) RTErrVarsRestore(PCRTERRVARS pVars)
54{
55 AssertReturnVoid(pVars->ai32Vars[0] == RTERRVARS_MAGIC);
56 errno = pVars->ai32Vars[3];
57 if ( pVars->ai32Vars[2] != WSANOTINITIALISED
58 && g_pfnWSASetLastError)
59 g_pfnWSASetLastError(pVars->ai32Vars[2]);
60 SetLastError(pVars->ai32Vars[1]);
61}
62
63
64RTDECL(bool) RTErrVarsAreEqual(PCRTERRVARS pVars1, PCRTERRVARS pVars2)
65{
66 Assert(pVars1->ai32Vars[0] == RTERRVARS_MAGIC);
67 Assert(pVars2->ai32Vars[0] == RTERRVARS_MAGIC);
68
69 return pVars1->ai32Vars[0] == pVars2->ai32Vars[0]
70 && pVars1->ai32Vars[1] == pVars2->ai32Vars[1]
71 && pVars1->ai32Vars[2] == pVars2->ai32Vars[2]
72 && pVars1->ai32Vars[3] == pVars2->ai32Vars[3];
73}
74
75
76RTDECL(bool) RTErrVarsHaveChanged(PCRTERRVARS pVars)
77{
78 Assert(pVars->ai32Vars[0] == RTERRVARS_MAGIC);
79
80 return pVars->ai32Vars[0] != RTERRVARS_MAGIC
81 || (uint32_t)pVars->ai32Vars[1] != GetLastError()
82 || pVars->ai32Vars[2] != (g_pfnWSAGetLastError ? g_pfnWSAGetLastError() : WSANOTINITIALISED)
83 || pVars->ai32Vars[3] != errno;
84}
85
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette