summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/filemapping_memmgt/VirtualAlloc/test22/VirtualAlloc.cpp
blob: 489926f48d66e0d2545e1332cfe3121c19296fd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

/*=============================================================
**
** Source:  virtualalloc.c
**
** Purpose: Negative test the VirtualAlloc API.
**          Call VirtualAlloc with MEM_COMMIT allocation type
**          and PAGE_READWRITE access protection

**
**============================================================*/
#include <palsuite.h>

int __cdecl main(int argc, char *argv[])
{
    int err;
    LPVOID lpVirtualAddress;


    //Initialize the PAL environment
    err = PAL_Initialize(argc, argv);
    if(0 != err)
    {
        ExitProcess(FAIL);
    }

    //Allocate the physical storage in memory or in the paging file on disk 
    lpVirtualAddress = VirtualAlloc(NULL,//system determine where to allocate the region
            (SIZE_T)(2147483647000000), //specify the size to be int32.maxvalue mega bytes
            MEM_COMMIT,      //allocation type
            PAGE_READWRITE);  //access protection
    if(NULL != lpVirtualAddress)
    {
        Fail("\nWelcome to the Future, where Unlimited Memory is Available, disregard this test!\n");
    }



    PAL_Terminate();
    return PASS;
}