summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/filemapping_memmgt/VirtualFree/test2/VirtualFree.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/filemapping_memmgt/VirtualFree/test2/VirtualFree.cpp')
-rw-r--r--src/pal/tests/palsuite/filemapping_memmgt/VirtualFree/test2/VirtualFree.cpp54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/filemapping_memmgt/VirtualFree/test2/VirtualFree.cpp b/src/pal/tests/palsuite/filemapping_memmgt/VirtualFree/test2/VirtualFree.cpp
new file mode 100644
index 0000000000..70064a3bf9
--- /dev/null
+++ b/src/pal/tests/palsuite/filemapping_memmgt/VirtualFree/test2/VirtualFree.cpp
@@ -0,0 +1,54 @@
+// 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: virtualfree.c
+**
+** Purpose: Positive test the VirtualFree API.
+** Call VirtualFree with MEM_RELEASE
+** free operation type
+**
+**
+**============================================================*/
+#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
+ 1024, //specify the size
+ MEM_COMMIT, //allocation type
+ PAGE_READONLY); //access protection
+ if(NULL == lpVirtualAddress)
+ {
+ Fail("\nFailed to call VirtualAlloc API!\n");
+ PAL_Terminate();
+ return 1;
+ }
+
+ //decommit the specified region
+ err = VirtualFree(lpVirtualAddress,//base address
+ 0, //must be zero with MEM_RELEASE
+ MEM_RELEASE);//free operation
+ if(0 == err)
+ {
+ Fail("\nFailed to call VirtualFree API!\n");
+ PAL_Terminate();
+ return 1;
+ }
+
+ PAL_Terminate();
+ return PASS;
+}