blob: 07fa33df32f7ca686aad91594f9e4ecdafcbffd7 [file] [log] [blame]
Alexandre Julliard234bc241994-12-10 13:02:28 +00001/*
Alexandre Julliarde2abbb11995-03-19 17:39:39 +00002 * Global heap functions
3 *
4 * Copyright 1995 Alexandre Julliard
5 */
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00006/* 0xffff sometimes seems to mean: CURRENT_DS */
Alexandre Julliard121bd981993-07-08 17:37:25 +00007
François Gouget14259412001-11-06 20:57:11 +00008#include "config.h"
Francois Gouget386cf6e2001-10-14 16:25:47 +00009#include "wine/port.h"
10
Alexandre Julliard808cb041995-08-17 17:11:36 +000011#include <sys/types.h>
Alexandre Julliard121bd981993-07-08 17:37:25 +000012#include <stdlib.h>
Marcus Meissner6189c192000-03-04 19:19:15 +000013#include <time.h>
Alexandre Julliard383da682000-02-10 22:15:21 +000014#include <stdio.h>
Alexandre Julliard4f8c37b1996-01-14 18:12:01 +000015#include <unistd.h>
Alexandre Julliard8d24ae61994-04-05 21:42:43 +000016#include <string.h>
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000017
Marcus Meissner04c3e1d1999-02-19 10:37:02 +000018#include "wine/winbase16.h"
Lawson Whitney969515d2000-10-02 22:27:37 +000019#include "wine/exception.h"
Alexandre Julliard2787be81995-05-22 18:23:01 +000020#include "global.h"
Alexandre Julliard3f2abfa1994-08-16 15:43:11 +000021#include "toolhelp.h"
Alexandre Julliard234bc241994-12-10 13:02:28 +000022#include "selectors.h"
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +000023#include "miscemu.h"
Alexandre Julliarde2abbb11995-03-19 17:39:39 +000024#include "stackframe.h"
Alexandre Julliard77b99181997-09-14 17:17:23 +000025#include "module.h"
Alexandre Julliard15657091999-05-23 10:25:25 +000026#include "debugtools.h"
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +000027#include "winerror.h"
Alexandre Julliardaca05781994-10-17 18:12:41 +000028
Alexandre Julliard383da682000-02-10 22:15:21 +000029DEFAULT_DEBUG_CHANNEL(global);
Patrik Stridvallb4b9fae1999-04-19 14:56:29 +000030
Alexandre Julliardfa68b751995-04-03 16:55:37 +000031 /* Global arena block */
32typedef struct
33{
Alexandre Julliard1285c2f1996-05-06 16:06:24 +000034 DWORD base; /* Base address (0 if discarded) */
35 DWORD size; /* Size in bytes (0 indicates a free block) */
36 HGLOBAL16 handle; /* Handle for this block */
37 HGLOBAL16 hOwner; /* Owner of this block */
38 BYTE lockCount; /* Count of GlobalFix() calls */
39 BYTE pageLockCount; /* Count of GlobalPageLock() calls */
40 BYTE flags; /* Allocation flags */
41 BYTE selCount; /* Number of selectors allocated for this block */
Alexandre Julliardfa68b751995-04-03 16:55:37 +000042} GLOBALARENA;
43
44 /* Flags definitions */
Alexandre Julliard2787be81995-05-22 18:23:01 +000045#define GA_MOVEABLE 0x02 /* same as GMEM_MOVEABLE */
Alexandre Julliardfa68b751995-04-03 16:55:37 +000046#define GA_DGROUP 0x04
47#define GA_DISCARDABLE 0x08
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000048#define GA_IPCSHARE 0x10 /* same as GMEM_DDESHARE */
Andreas Mohrd23f5062000-10-02 22:16:21 +000049#define GA_DOSMEM 0x20
Alexandre Julliardfa68b751995-04-03 16:55:37 +000050
51 /* Arena array */
52static GLOBALARENA *pGlobalArena = NULL;
53static int globalArenaSize = 0;
54
Alexandre Julliarde2abbb11995-03-19 17:39:39 +000055#define GLOBAL_MAX_ALLOC_SIZE 0x00ff0000 /* Largest allocation is 16M - 64K */
Alexandre Julliard121bd981993-07-08 17:37:25 +000056
Alexandre Julliarda11d7b11998-03-01 20:05:02 +000057#define VALID_HANDLE(handle) (((handle)>>__AHSHIFT)<globalArenaSize)
Alexandre Julliardfa68b751995-04-03 16:55:37 +000058#define GET_ARENA_PTR(handle) (pGlobalArena + ((handle) >> __AHSHIFT))
Alexandre Julliard75a839a1993-07-15 11:13:45 +000059
Lawson Whitney969515d2000-10-02 22:27:37 +000060/* filter for page-fault exceptions */
61/* It is possible for a bogus global pointer to cause a */
62/* page zero reference, so I include EXCEPTION_PRIV_INSTRUCTION too. */
63
64static WINE_EXCEPTION_FILTER(page_fault)
65{
66 switch (GetExceptionCode()) {
67 case (EXCEPTION_ACCESS_VIOLATION):
68 case (EXCEPTION_PRIV_INSTRUCTION):
69 return EXCEPTION_EXECUTE_HANDLER;
70 default:
71 return EXCEPTION_CONTINUE_SEARCH;
72 }
73}
74
Alexandre Julliarde2abbb11995-03-19 17:39:39 +000075/***********************************************************************
Alexandre Julliardfa68b751995-04-03 16:55:37 +000076 * GLOBAL_GetArena
77 *
78 * Return the arena for a given selector, growing the arena array if needed.
Alexandre Julliarddba420a1994-02-02 06:48:31 +000079 */
Alexandre Julliardfa68b751995-04-03 16:55:37 +000080static GLOBALARENA *GLOBAL_GetArena( WORD sel, WORD selcount )
Alexandre Julliarddba420a1994-02-02 06:48:31 +000081{
Alexandre Julliard2787be81995-05-22 18:23:01 +000082 if (((sel >> __AHSHIFT) + selcount) > globalArenaSize)
Alexandre Julliardfa68b751995-04-03 16:55:37 +000083 {
Alexandre Julliard2787be81995-05-22 18:23:01 +000084 int newsize = ((sel >> __AHSHIFT) + selcount + 0xff) & ~0xff;
Alexandre Julliardfa68b751995-04-03 16:55:37 +000085 GLOBALARENA *pNewArena = realloc( pGlobalArena,
Alexandre Julliard2787be81995-05-22 18:23:01 +000086 newsize * sizeof(GLOBALARENA) );
Alexandre Julliardfa68b751995-04-03 16:55:37 +000087 if (!pNewArena) return 0;
88 pGlobalArena = pNewArena;
Alexandre Julliard2787be81995-05-22 18:23:01 +000089 memset( pGlobalArena + globalArenaSize, 0,
90 (newsize - globalArenaSize) * sizeof(GLOBALARENA) );
91 globalArenaSize = newsize;
Alexandre Julliardfa68b751995-04-03 16:55:37 +000092 }
93 return pGlobalArena + (sel >> __AHSHIFT);
94}
Alexandre Julliarddba420a1994-02-02 06:48:31 +000095
Juergen Schmiedebc2b771998-11-14 18:59:30 +000096void debug_handles(void)
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000097{
98 int printed=0;
99 int i;
100 for (i = globalArenaSize-1 ; i>=0 ; i--) {
101 if (pGlobalArena[i].size!=0 && (pGlobalArena[i].handle & 0x8000)){
102 printed=1;
Alexandre Julliard15657091999-05-23 10:25:25 +0000103 DPRINTF("0x%08x, ",pGlobalArena[i].handle);
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000104 }
105 }
106 if (printed)
Alexandre Julliard15657091999-05-23 10:25:25 +0000107 DPRINTF("\n");
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000108}
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000109
110
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000111/***********************************************************************
Alexandre Julliard594997c1995-04-30 10:05:20 +0000112 * GLOBAL_CreateBlock
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000113 *
Alexandre Julliard594997c1995-04-30 10:05:20 +0000114 * Create a global heap block for a fixed range of linear memory.
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000115 */
Alexandre Julliard1285c2f1996-05-06 16:06:24 +0000116HGLOBAL16 GLOBAL_CreateBlock( WORD flags, const void *ptr, DWORD size,
Alexandre Julliard914406f2000-11-14 01:54:49 +0000117 HGLOBAL16 hOwner, unsigned char selflags )
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000118{
119 WORD sel, selcount;
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000120 GLOBALARENA *pArena;
Alexandre Julliarddba420a1994-02-02 06:48:31 +0000121
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000122 /* Allocate the selector(s) */
123
Alexandre Julliard914406f2000-11-14 01:54:49 +0000124 sel = SELECTOR_AllocBlock( ptr, size, selflags );
Alexandre Julliard594997c1995-04-30 10:05:20 +0000125 if (!sel) return 0;
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000126 selcount = (size + 0xffff) / 0x10000;
127
128 if (!(pArena = GLOBAL_GetArena( sel, selcount )))
129 {
Alexandre Julliard914406f2000-11-14 01:54:49 +0000130 SELECTOR_FreeBlock( sel );
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000131 return 0;
132 }
133
134 /* Fill the arena block */
135
136 pArena->base = (DWORD)ptr;
Alexandre Julliard8c540c62000-11-13 04:16:05 +0000137 pArena->size = GetSelectorLimit16(sel) + 1;
Alexandre Julliard7e56f681996-01-31 19:02:28 +0000138 pArena->handle = (flags & GMEM_MOVEABLE) ? sel - 1 : sel;
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000139 pArena->hOwner = hOwner;
140 pArena->lockCount = 0;
141 pArena->pageLockCount = 0;
Alexandre Julliard2787be81995-05-22 18:23:01 +0000142 pArena->flags = flags & GA_MOVEABLE;
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000143 if (flags & GMEM_DISCARDABLE) pArena->flags |= GA_DISCARDABLE;
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000144 if (flags & GMEM_DDESHARE) pArena->flags |= GA_IPCSHARE;
Alexandre Julliard914406f2000-11-14 01:54:49 +0000145 if (!(selflags & (WINE_LDT_FLAGS_CODE^WINE_LDT_FLAGS_DATA))) pArena->flags |= GA_DGROUP;
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000146 pArena->selCount = selcount;
147 if (selcount > 1) /* clear the next arena blocks */
148 memset( pArena + 1, 0, (selcount - 1) * sizeof(GLOBALARENA) );
Alexandre Julliarddba420a1994-02-02 06:48:31 +0000149
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000150 return pArena->handle;
151}
Alexandre Julliard121bd981993-07-08 17:37:25 +0000152
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000153
154/***********************************************************************
Alexandre Julliard594997c1995-04-30 10:05:20 +0000155 * GLOBAL_FreeBlock
156 *
157 * Free a block allocated by GLOBAL_CreateBlock, without touching
158 * the associated linear memory range.
159 */
Alexandre Julliardd90840e1996-06-11 16:02:08 +0000160BOOL16 GLOBAL_FreeBlock( HGLOBAL16 handle )
Alexandre Julliard594997c1995-04-30 10:05:20 +0000161{
162 WORD sel;
Alexandre Julliard8cc3a5e1996-08-11 15:49:51 +0000163 GLOBALARENA *pArena;
Alexandre Julliard594997c1995-04-30 10:05:20 +0000164
165 if (!handle) return TRUE;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000166 sel = GlobalHandleToSel16( handle );
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000167 if (!VALID_HANDLE(sel))
168 return FALSE;
Alexandre Julliard8cc3a5e1996-08-11 15:49:51 +0000169 pArena = GET_ARENA_PTR(sel);
Alexandre Julliard914406f2000-11-14 01:54:49 +0000170 SELECTOR_FreeBlock( sel );
Alexandre Julliard8cc3a5e1996-08-11 15:49:51 +0000171 memset( pArena, 0, sizeof(GLOBALARENA) );
Alexandre Julliard594997c1995-04-30 10:05:20 +0000172 return TRUE;
173}
174
Alexandre Julliardd30dfd21998-09-27 18:28:36 +0000175/***********************************************************************
176 * GLOBAL_MoveBlock
177 */
178BOOL16 GLOBAL_MoveBlock( HGLOBAL16 handle, const void *ptr, DWORD size )
179{
180 WORD sel;
181 GLOBALARENA *pArena;
182
183 if (!handle) return TRUE;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000184 sel = GlobalHandleToSel16( handle );
Alexandre Julliardd30dfd21998-09-27 18:28:36 +0000185 if (!VALID_HANDLE(sel))
186 return FALSE;
187 pArena = GET_ARENA_PTR(sel);
188 if (pArena->selCount != 1)
189 return FALSE;
190
191 pArena->base = (DWORD)ptr;
192 pArena->size = size;
Alexandre Julliard914406f2000-11-14 01:54:49 +0000193 SELECTOR_ReallocBlock( sel, ptr, size );
Alexandre Julliardd30dfd21998-09-27 18:28:36 +0000194 return TRUE;
195}
Alexandre Julliard594997c1995-04-30 10:05:20 +0000196
197/***********************************************************************
198 * GLOBAL_Alloc
199 *
Alexandre Julliard1285c2f1996-05-06 16:06:24 +0000200 * Implementation of GlobalAlloc16()
Alexandre Julliard594997c1995-04-30 10:05:20 +0000201 */
Alexandre Julliard914406f2000-11-14 01:54:49 +0000202HGLOBAL16 GLOBAL_Alloc( UINT16 flags, DWORD size, HGLOBAL16 hOwner, unsigned char selflags )
Alexandre Julliard594997c1995-04-30 10:05:20 +0000203{
204 void *ptr;
Alexandre Julliard1285c2f1996-05-06 16:06:24 +0000205 HGLOBAL16 handle;
Alexandre Julliard594997c1995-04-30 10:05:20 +0000206
Alexandre Julliard15657091999-05-23 10:25:25 +0000207 TRACE("%ld flags=%04x\n", size, flags );
Alexandre Julliard594997c1995-04-30 10:05:20 +0000208
Alexandre Julliard7e56f681996-01-31 19:02:28 +0000209 /* If size is 0, create a discarded block */
210
Alexandre Julliard914406f2000-11-14 01:54:49 +0000211 if (size == 0) return GLOBAL_CreateBlock( flags, NULL, 1, hOwner, selflags );
Alexandre Julliard7e56f681996-01-31 19:02:28 +0000212
213 /* Fixup the size */
Alexandre Julliard594997c1995-04-30 10:05:20 +0000214
Alexandre Julliarda2f2e011995-06-06 16:40:35 +0000215 if (size >= GLOBAL_MAX_ALLOC_SIZE - 0x1f) return 0;
Alexandre Julliard7e56f681996-01-31 19:02:28 +0000216 size = (size + 0x1f) & ~0x1f;
Alexandre Julliard594997c1995-04-30 10:05:20 +0000217
Marcus Meissnere32a3171999-07-11 14:13:56 +0000218 /* Allocate the linear memory */
Alexandre Julliard079fd722000-01-25 01:41:35 +0000219 ptr = HeapAlloc( GetProcessHeap(), 0, size );
Alexandre Julliard77b99181997-09-14 17:17:23 +0000220 /* FIXME: free discardable blocks and try again? */
Alexandre Julliard594997c1995-04-30 10:05:20 +0000221 if (!ptr) return 0;
222
223 /* Allocate the selector(s) */
224
Alexandre Julliard914406f2000-11-14 01:54:49 +0000225 handle = GLOBAL_CreateBlock( flags, ptr, size, hOwner, selflags );
Alexandre Julliard594997c1995-04-30 10:05:20 +0000226 if (!handle)
227 {
Alexandre Julliard079fd722000-01-25 01:41:35 +0000228 HeapFree( GetProcessHeap(), 0, ptr );
Alexandre Julliard594997c1995-04-30 10:05:20 +0000229 return 0;
230 }
231
232 if (flags & GMEM_ZEROINIT) memset( ptr, 0, size );
233 return handle;
234}
235
Alexandre Julliard594997c1995-04-30 10:05:20 +0000236/***********************************************************************
Patrik Stridvall044855c2001-07-11 18:56:41 +0000237 * GlobalAlloc (KERNEL.15)
238 * GlobalAlloc16 (KERNEL32.24)
Alexandre Julliard54c27111998-03-29 19:44:57 +0000239 * RETURNS
240 * Handle: Success
241 * NULL: Failure
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000242 */
Alexandre Julliard54c27111998-03-29 19:44:57 +0000243HGLOBAL16 WINAPI GlobalAlloc16(
244 UINT16 flags, /* [in] Object allocation attributes */
245 DWORD size /* [in] Number of bytes to allocate */
246) {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000247 HANDLE16 owner = GetCurrentPDB16();
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000248
Alexandre Julliard594997c1995-04-30 10:05:20 +0000249 if (flags & GMEM_DDESHARE)
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000250 owner = GetExePtr(owner); /* Make it a module handle */
Alexandre Julliard914406f2000-11-14 01:54:49 +0000251 return GLOBAL_Alloc( flags, size, owner, WINE_LDT_FLAGS_DATA );
Alexandre Julliard121bd981993-07-08 17:37:25 +0000252}
Alexandre Julliard7cbe6571995-01-09 18:21:16 +0000253
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000254
255/***********************************************************************
Patrik Stridvall044855c2001-07-11 18:56:41 +0000256 * GlobalReAlloc (KERNEL.16)
257 * GlobalReAlloc16 (KERNEL32.@)
Alexandre Julliard54c27111998-03-29 19:44:57 +0000258 * RETURNS
259 * Handle: Success
260 * NULL: Failure
Alexandre Julliard7cbe6571995-01-09 18:21:16 +0000261 */
Alexandre Julliard54c27111998-03-29 19:44:57 +0000262HGLOBAL16 WINAPI GlobalReAlloc16(
263 HGLOBAL16 handle, /* [in] Handle of global memory object */
264 DWORD size, /* [in] New size of block */
265 UINT16 flags /* [in] How to reallocate object */
266) {
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000267 WORD selcount;
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000268 DWORD oldsize;
269 void *ptr;
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000270 GLOBALARENA *pArena, *pNewArena;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000271 WORD sel = GlobalHandleToSel16( handle );
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000272
Alexandre Julliard15657091999-05-23 10:25:25 +0000273 TRACE("%04x %ld flags=%04x\n",
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000274 handle, size, flags );
Alexandre Julliard594997c1995-04-30 10:05:20 +0000275 if (!handle) return 0;
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000276
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000277 if (!VALID_HANDLE(handle)) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000278 WARN("Invalid handle 0x%04x!\n", handle);
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000279 return 0;
280 }
Alexandre Julliard594997c1995-04-30 10:05:20 +0000281 pArena = GET_ARENA_PTR( handle );
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000282
Alexandre Julliard2787be81995-05-22 18:23:01 +0000283 /* Discard the block if requested */
284
Alexandre Julliardded30381995-07-06 17:18:27 +0000285 if ((size == 0) && (flags & GMEM_MOVEABLE) && !(flags & GMEM_MODIFY))
Alexandre Julliard2787be81995-05-22 18:23:01 +0000286 {
287 if (!(pArena->flags & GA_MOVEABLE) ||
288 !(pArena->flags & GA_DISCARDABLE) ||
289 (pArena->lockCount > 0) || (pArena->pageLockCount > 0)) return 0;
Alexandre Julliard079fd722000-01-25 01:41:35 +0000290 HeapFree( GetProcessHeap(), 0, (void *)pArena->base );
Alexandre Julliard2787be81995-05-22 18:23:01 +0000291 pArena->base = 0;
Alexandre Julliard77b99181997-09-14 17:17:23 +0000292
293 /* Note: we rely on the fact that SELECTOR_ReallocBlock won't
294 * change the selector if we are shrinking the block.
295 * FIXME: shouldn't we keep selectors until the block is deleted?
296 */
Alexandre Julliard284c9b91999-04-11 15:07:13 +0000297 SELECTOR_ReallocBlock( sel, 0, 1 );
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000298 return handle;
Alexandre Julliard2787be81995-05-22 18:23:01 +0000299 }
300
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000301 /* Fixup the size */
302
Alexandre Julliard2787be81995-05-22 18:23:01 +0000303 if (size > GLOBAL_MAX_ALLOC_SIZE - 0x20) return 0;
304 if (size == 0) size = 0x20;
305 else size = (size + 0x1f) & ~0x1f;
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000306
Alexandre Julliard594997c1995-04-30 10:05:20 +0000307 /* Change the flags */
308
309 if (flags & GMEM_MODIFY)
310 {
311 /* Change the flags, leaving GA_DGROUP alone */
Alexandre Julliard2787be81995-05-22 18:23:01 +0000312 pArena->flags = (pArena->flags & GA_DGROUP) | (flags & GA_MOVEABLE);
Alexandre Julliard594997c1995-04-30 10:05:20 +0000313 if (flags & GMEM_DISCARDABLE) pArena->flags |= GA_DISCARDABLE;
314 return handle;
315 }
316
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000317 /* Reallocate the linear memory */
318
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000319 ptr = (void *)pArena->base;
320 oldsize = pArena->size;
Alexandre Julliard15657091999-05-23 10:25:25 +0000321 TRACE("oldsize %08lx\n",oldsize);
Alexandre Julliard7d654eb1996-02-25 11:36:22 +0000322 if (ptr && (size == oldsize)) return handle; /* Nothing to do */
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000323
Andreas Mohrd23f5062000-10-02 22:16:21 +0000324 if (pArena->flags & GA_DOSMEM)
Ove Kaaven7b499142000-07-28 22:23:59 +0000325 ptr = DOSMEM_ResizeBlock(ptr, size, NULL);
Bertho Stultiensc1d1cfe1999-04-18 12:14:06 +0000326 else
Alexandre Julliard079fd722000-01-25 01:41:35 +0000327 ptr = HeapReAlloc( GetProcessHeap(), 0, ptr, size );
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000328 if (!ptr)
329 {
Alexandre Julliard914406f2000-11-14 01:54:49 +0000330 SELECTOR_FreeBlock( sel );
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000331 memset( pArena, 0, sizeof(GLOBALARENA) );
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000332 return 0;
333 }
334
335 /* Reallocate the selector(s) */
336
Alexandre Julliard284c9b91999-04-11 15:07:13 +0000337 sel = SELECTOR_ReallocBlock( sel, ptr, size );
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000338 if (!sel)
339 {
Alexandre Julliard079fd722000-01-25 01:41:35 +0000340 HeapFree( GetProcessHeap(), 0, ptr );
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000341 memset( pArena, 0, sizeof(GLOBALARENA) );
342 return 0;
343 }
344 selcount = (size + 0xffff) / 0x10000;
345
346 if (!(pNewArena = GLOBAL_GetArena( sel, selcount )))
347 {
Alexandre Julliard079fd722000-01-25 01:41:35 +0000348 HeapFree( GetProcessHeap(), 0, ptr );
Alexandre Julliard914406f2000-11-14 01:54:49 +0000349 SELECTOR_FreeBlock( sel );
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000350 return 0;
351 }
352
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000353 /* Fill the new arena block */
354
355 if (pNewArena != pArena) memcpy( pNewArena, pArena, sizeof(GLOBALARENA) );
356 pNewArena->base = (DWORD)ptr;
Alexandre Julliard8c540c62000-11-13 04:16:05 +0000357 pNewArena->size = GetSelectorLimit16(sel) + 1;
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000358 pNewArena->selCount = selcount;
Alexandre Julliard2787be81995-05-22 18:23:01 +0000359 pNewArena->handle = (pNewArena->flags & GA_MOVEABLE) ? sel - 1 : sel;
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000360
361 if (selcount > 1) /* clear the next arena blocks */
362 memset( pNewArena + 1, 0, (selcount - 1) * sizeof(GLOBALARENA) );
363
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000364 if ((oldsize < size) && (flags & GMEM_ZEROINIT))
365 memset( (char *)ptr + oldsize, 0, size - oldsize );
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000366 return pNewArena->handle;
Alexandre Julliard7cbe6571995-01-09 18:21:16 +0000367}
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000368
369
370/***********************************************************************
Patrik Stridvall044855c2001-07-11 18:56:41 +0000371 * GlobalFree (KERNEL.17)
372 * GlobalFree16 (KERNEL32.31)
Alexandre Julliard54c27111998-03-29 19:44:57 +0000373 * RETURNS
374 * NULL: Success
375 * Handle: Failure
Alexandre Julliard121bd981993-07-08 17:37:25 +0000376 */
Alexandre Julliard54c27111998-03-29 19:44:57 +0000377HGLOBAL16 WINAPI GlobalFree16(
378 HGLOBAL16 handle /* [in] Handle of global memory object */
379) {
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000380 void *ptr;
Alexandre Julliard121bd981993-07-08 17:37:25 +0000381
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000382 if (!VALID_HANDLE(handle)) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000383 WARN("Invalid handle 0x%04x passed to GlobalFree16!\n",handle);
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000384 return 0;
385 }
386 ptr = (void *)GET_ARENA_PTR(handle)->base;
387
Alexandre Julliard15657091999-05-23 10:25:25 +0000388 TRACE("%04x\n", handle );
Alexandre Julliard594997c1995-04-30 10:05:20 +0000389 if (!GLOBAL_FreeBlock( handle )) return handle; /* failed */
Alexandre Julliard079fd722000-01-25 01:41:35 +0000390 if (ptr) HeapFree( GetProcessHeap(), 0, ptr );
Alexandre Julliard121bd981993-07-08 17:37:25 +0000391 return 0;
392}
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000393
394
395/***********************************************************************
Patrik Stridvall01d5e5b2001-07-02 19:59:40 +0000396 * GlobalLock (KERNEL.18)
Alexandre Julliard121bd981993-07-08 17:37:25 +0000397 *
Alexandre Julliard1285c2f1996-05-06 16:06:24 +0000398 * This is the GlobalLock16() function used by 16-bit code.
Alexandre Julliard121bd981993-07-08 17:37:25 +0000399 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000400SEGPTR WINAPI WIN16_GlobalLock16( HGLOBAL16 handle )
Alexandre Julliard121bd981993-07-08 17:37:25 +0000401{
Ulrich Weigandb2682d41999-07-27 16:10:24 +0000402 WORD sel = GlobalHandleToSel16( handle );
403 TRACE("(%04x) -> %08lx\n", handle, MAKELONG( 0, sel ) );
404
Alexandre Julliard77b99181997-09-14 17:17:23 +0000405 if (handle)
406 {
407 if (handle == (HGLOBAL16)-1) handle = CURRENT_DS;
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000408
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000409 if (!VALID_HANDLE(handle)) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000410 WARN("Invalid handle 0x%04x passed to WIN16_GlobalLock16!\n",handle);
Ulrich Weigandb2682d41999-07-27 16:10:24 +0000411 sel = 0;
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000412 }
Ulrich Weigand81a80571999-07-28 16:36:29 +0000413 else if (!GET_ARENA_PTR(handle)->base)
Ulrich Weigandb2682d41999-07-27 16:10:24 +0000414 sel = 0;
415 else
416 GET_ARENA_PTR(handle)->lockCount++;
Alexandre Julliard77b99181997-09-14 17:17:23 +0000417 }
Ulrich Weigandb2682d41999-07-27 16:10:24 +0000418
419 CURRENT_STACK16->ecx = sel; /* selector must be returned in CX as well */
Alexandre Julliard982a2232000-12-13 20:20:09 +0000420 return MAKESEGPTR( sel, 0 );
Alexandre Julliard121bd981993-07-08 17:37:25 +0000421}
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000422
423
Alexandre Julliard58017232000-12-22 01:09:26 +0000424/**********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +0000425 * K32WOWGlobalLock16 (KERNEL32.60)
Alexandre Julliard58017232000-12-22 01:09:26 +0000426 */
427SEGPTR WINAPI K32WOWGlobalLock16( HGLOBAL16 hMem )
428{
429 return WIN16_GlobalLock16( hMem );
430}
431
432
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000433/***********************************************************************
Patrik Stridvall044855c2001-07-11 18:56:41 +0000434 * GlobalLock16 (KERNEL32.25)
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000435 *
Alexandre Julliard1285c2f1996-05-06 16:06:24 +0000436 * This is the GlobalLock16() function used by 32-bit code.
Alexandre Julliard54c27111998-03-29 19:44:57 +0000437 *
438 * RETURNS
439 * Pointer to first byte of memory block
440 * NULL: Failure
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000441 */
Alexandre Julliard54c27111998-03-29 19:44:57 +0000442LPVOID WINAPI GlobalLock16(
443 HGLOBAL16 handle /* [in] Handle of global memory object */
444) {
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000445 if (!handle) return 0;
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000446 if (!VALID_HANDLE(handle))
447 return (LPVOID)0;
Alexandre Julliard3db94ef1997-09-28 17:43:24 +0000448 GET_ARENA_PTR(handle)->lockCount++;
Alexandre Julliard1285c2f1996-05-06 16:06:24 +0000449 return (LPVOID)GET_ARENA_PTR(handle)->base;
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000450}
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000451
452
453/***********************************************************************
Patrik Stridvall044855c2001-07-11 18:56:41 +0000454 * GlobalUnlock (KERNEL.19)
455 * GlobalUnlock16 (KERNEL32.26)
Alexandre Julliard54c27111998-03-29 19:44:57 +0000456 * NOTES
457 * Should the return values be cast to booleans?
458 *
459 * RETURNS
460 * TRUE: Object is still locked
461 * FALSE: Object is unlocked
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000462 */
Alexandre Julliard54c27111998-03-29 19:44:57 +0000463BOOL16 WINAPI GlobalUnlock16(
464 HGLOBAL16 handle /* [in] Handle of global memory object */
465) {
Alexandre Julliard3db94ef1997-09-28 17:43:24 +0000466 GLOBALARENA *pArena = GET_ARENA_PTR(handle);
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000467 if (!VALID_HANDLE(handle)) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000468 WARN("Invalid handle 0x%04x passed to GlobalUnlock16!\n",handle);
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000469 return 0;
470 }
Alexandre Julliard15657091999-05-23 10:25:25 +0000471 TRACE("%04x\n", handle );
Alexandre Julliard3db94ef1997-09-28 17:43:24 +0000472 if (pArena->lockCount) pArena->lockCount--;
473 return pArena->lockCount;
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000474}
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000475
Ulrich Weigand23e9b041998-12-01 15:19:54 +0000476/***********************************************************************
477 * GlobalChangeLockCount (KERNEL.365)
478 *
479 * This is declared as a register function as it has to preserve
480 * *all* registers, even AX/DX !
481 *
482 */
Ulrich Weigandb5151d01999-07-25 11:27:36 +0000483void WINAPI GlobalChangeLockCount16( HGLOBAL16 handle, INT16 delta,
484 CONTEXT86 *context )
Ulrich Weigand23e9b041998-12-01 15:19:54 +0000485{
Ulrich Weigand23e9b041998-12-01 15:19:54 +0000486 if ( delta == 1 )
487 GlobalLock16( handle );
488 else if ( delta == -1 )
489 GlobalUnlock16( handle );
490 else
Alexandre Julliard15657091999-05-23 10:25:25 +0000491 ERR("(%04X, %d): strange delta value\n", handle, delta );
Ulrich Weigand23e9b041998-12-01 15:19:54 +0000492}
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000493
494/***********************************************************************
Patrik Stridvall044855c2001-07-11 18:56:41 +0000495 * GlobalSize (KERNEL.20)
496 * GlobalSize16 (KERNEL32.32)
Alexandre Julliard54c27111998-03-29 19:44:57 +0000497 * RETURNS
498 * Size in bytes of object
499 * 0: Failure
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000500 */
Alexandre Julliard54c27111998-03-29 19:44:57 +0000501DWORD WINAPI GlobalSize16(
502 HGLOBAL16 handle /* [in] Handle of global memory object */
503) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000504 TRACE("%04x\n", handle );
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000505 if (!handle) return 0;
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000506 if (!VALID_HANDLE(handle))
507 return 0;
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000508 return GET_ARENA_PTR(handle)->size;
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000509}
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000510
511
512/***********************************************************************
Patrik Stridvall01d5e5b2001-07-02 19:59:40 +0000513 * GlobalHandle (KERNEL.21)
Alexandre Julliard54c27111998-03-29 19:44:57 +0000514 * NOTES
515 * Why is GlobalHandleToSel used here with the sel as input?
516 *
517 * RETURNS
518 * Handle: Success
519 * NULL: Failure
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000520 */
Alexandre Julliard54c27111998-03-29 19:44:57 +0000521DWORD WINAPI GlobalHandle16(
522 WORD sel /* [in] Address of global memory block */
523) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000524 TRACE("%04x\n", sel );
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000525 if (!VALID_HANDLE(sel)) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000526 WARN("Invalid handle 0x%04x passed to GlobalHandle16!\n",sel);
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000527 return 0;
528 }
Alexandre Julliarda3960291999-02-26 11:11:13 +0000529 return MAKELONG( GET_ARENA_PTR(sel)->handle, GlobalHandleToSel16(sel) );
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000530}
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000531
Alexandre Julliard60ce85c1998-02-01 18:33:27 +0000532/***********************************************************************
533 * GlobalHandleNoRIP (KERNEL.159)
534 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000535DWORD WINAPI GlobalHandleNoRIP16( WORD sel )
Alexandre Julliard60ce85c1998-02-01 18:33:27 +0000536{
537 int i;
538 for (i = globalArenaSize-1 ; i>=0 ; i--) {
539 if (pGlobalArena[i].size!=0 && pGlobalArena[i].handle == sel)
Alexandre Julliarda3960291999-02-26 11:11:13 +0000540 return MAKELONG( GET_ARENA_PTR(sel)->handle, GlobalHandleToSel16(sel) );
Alexandre Julliard60ce85c1998-02-01 18:33:27 +0000541 }
542 return 0;
543}
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000544
Alexandre Julliard54c27111998-03-29 19:44:57 +0000545
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000546/***********************************************************************
Patrik Stridvall044855c2001-07-11 18:56:41 +0000547 * GlobalFlags (KERNEL.22)
548 * GlobalFlags16 (KERNEL32.@)
Alexandre Julliard54c27111998-03-29 19:44:57 +0000549 * NOTES
550 * Should this return GMEM_INVALID_HANDLE instead of 0 on invalid
551 * handle?
552 *
553 * RETURNS
554 * Value specifying flags and lock count
555 * GMEM_INVALID_HANDLE: Invalid handle
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000556 */
Alexandre Julliard54c27111998-03-29 19:44:57 +0000557UINT16 WINAPI GlobalFlags16(
558 HGLOBAL16 handle /* [in] Handle of global memory object */
559) {
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000560 GLOBALARENA *pArena;
561
Alexandre Julliard15657091999-05-23 10:25:25 +0000562 TRACE("%04x\n", handle );
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000563 if (!VALID_HANDLE(handle)) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000564 WARN("Invalid handle 0x%04x passed to GlobalFlags16!\n",handle);
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000565 return 0;
566 }
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000567 pArena = GET_ARENA_PTR(handle);
568 return pArena->lockCount |
Alexandre Julliard2787be81995-05-22 18:23:01 +0000569 ((pArena->flags & GA_DISCARDABLE) ? GMEM_DISCARDABLE : 0) |
570 ((pArena->base == 0) ? GMEM_DISCARDED : 0);
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000571}
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000572
573
574/***********************************************************************
Patrik Stridvall01d5e5b2001-07-02 19:59:40 +0000575 * LockSegment (KERNEL.23)
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000576 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000577HGLOBAL16 WINAPI LockSegment16( HGLOBAL16 handle )
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000578{
Alexandre Julliard15657091999-05-23 10:25:25 +0000579 TRACE("%04x\n", handle );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000580 if (handle == (HGLOBAL16)-1) handle = CURRENT_DS;
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000581 if (!VALID_HANDLE(handle)) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000582 WARN("Invalid handle 0x%04x passed to LockSegment16!\n",handle);
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000583 return 0;
584 }
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000585 GET_ARENA_PTR(handle)->lockCount++;
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000586 return handle;
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000587}
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000588
589
590/***********************************************************************
Patrik Stridvall01d5e5b2001-07-02 19:59:40 +0000591 * UnlockSegment (KERNEL.24)
Alexandre Julliard401710d1993-09-04 10:09:32 +0000592 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000593void WINAPI UnlockSegment16( HGLOBAL16 handle )
Alexandre Julliard401710d1993-09-04 10:09:32 +0000594{
Alexandre Julliard15657091999-05-23 10:25:25 +0000595 TRACE("%04x\n", handle );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000596 if (handle == (HGLOBAL16)-1) handle = CURRENT_DS;
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000597 if (!VALID_HANDLE(handle)) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000598 WARN("Invalid handle 0x%04x passed to UnlockSegment16!\n",handle);
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000599 return;
600 }
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000601 GET_ARENA_PTR(handle)->lockCount--;
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000602 /* FIXME: this ought to return the lock count in CX (go figure...) */
Alexandre Julliard401710d1993-09-04 10:09:32 +0000603}
Alexandre Julliard401710d1993-09-04 10:09:32 +0000604
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000605
606/***********************************************************************
Patrik Stridvall01d5e5b2001-07-02 19:59:40 +0000607 * GlobalCompact (KERNEL.25)
Alexandre Julliard401710d1993-09-04 10:09:32 +0000608 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000609DWORD WINAPI GlobalCompact16( DWORD desired )
Alexandre Julliard401710d1993-09-04 10:09:32 +0000610{
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000611 return GLOBAL_MAX_ALLOC_SIZE;
Alexandre Julliard401710d1993-09-04 10:09:32 +0000612}
613
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000614
615/***********************************************************************
Alexandre Julliard594997c1995-04-30 10:05:20 +0000616 * GlobalFreeAll (KERNEL.26)
617 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000618void WINAPI GlobalFreeAll16( HGLOBAL16 owner )
Alexandre Julliard594997c1995-04-30 10:05:20 +0000619{
620 DWORD i;
621 GLOBALARENA *pArena;
622
623 pArena = pGlobalArena;
624 for (i = 0; i < globalArenaSize; i++, pArena++)
625 {
626 if ((pArena->size != 0) && (pArena->hOwner == owner))
Alexandre Julliard1285c2f1996-05-06 16:06:24 +0000627 GlobalFree16( pArena->handle );
Alexandre Julliard594997c1995-04-30 10:05:20 +0000628 }
629}
630
631
632/***********************************************************************
Patrik Stridvall044855c2001-07-11 18:56:41 +0000633 * GlobalWire (KERNEL.111)
634 * GlobalWire16 (KERNEL32.29)
Alexandre Julliard8d24ae61994-04-05 21:42:43 +0000635 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000636SEGPTR WINAPI GlobalWire16( HGLOBAL16 handle )
Alexandre Julliard8d24ae61994-04-05 21:42:43 +0000637{
Alexandre Julliard1285c2f1996-05-06 16:06:24 +0000638 return WIN16_GlobalLock16( handle );
Alexandre Julliard8d24ae61994-04-05 21:42:43 +0000639}
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000640
641
642/***********************************************************************
Patrik Stridvall044855c2001-07-11 18:56:41 +0000643 * GlobalUnWire (KERNEL.112)
644 * GlobalUnWire16 (KERNEL32.30)
Alexandre Julliard3f2abfa1994-08-16 15:43:11 +0000645 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000646BOOL16 WINAPI GlobalUnWire16( HGLOBAL16 handle )
Alexandre Julliard3f2abfa1994-08-16 15:43:11 +0000647{
Alexandre Julliard3db94ef1997-09-28 17:43:24 +0000648 return !GlobalUnlock16( handle );
Alexandre Julliard3f2abfa1994-08-16 15:43:11 +0000649}
Alexandre Julliardaca05781994-10-17 18:12:41 +0000650
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000651
652/***********************************************************************
Patrik Stridvall01d5e5b2001-07-02 19:59:40 +0000653 * SetSwapAreaSize (KERNEL.106)
Alexandre Julliardaca05781994-10-17 18:12:41 +0000654 */
Alexandre Julliarde658d821997-11-30 17:45:40 +0000655LONG WINAPI SetSwapAreaSize16( WORD size )
Alexandre Julliardaca05781994-10-17 18:12:41 +0000656{
Alexandre Julliard15657091999-05-23 10:25:25 +0000657 FIXME("(%d) - stub!\n", size );
Alexandre Julliardaca05781994-10-17 18:12:41 +0000658 return MAKELONG( size, 0xffff );
659}
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000660
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000661
662/***********************************************************************
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000663 * GlobalLRUOldest (KERNEL.163)
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000664 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000665HGLOBAL16 WINAPI GlobalLRUOldest16( HGLOBAL16 handle )
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000666{
Alexandre Julliard15657091999-05-23 10:25:25 +0000667 TRACE("%04x\n", handle );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000668 if (handle == (HGLOBAL16)-1) handle = CURRENT_DS;
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000669 return handle;
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000670}
671
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000672
673/***********************************************************************
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000674 * GlobalLRUNewest (KERNEL.164)
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000675 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000676HGLOBAL16 WINAPI GlobalLRUNewest16( HGLOBAL16 handle )
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000677{
Alexandre Julliard15657091999-05-23 10:25:25 +0000678 TRACE("%04x\n", handle );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000679 if (handle == (HGLOBAL16)-1) handle = CURRENT_DS;
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000680 return handle;
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000681}
682
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000683
684/***********************************************************************
Patrik Stridvall01d5e5b2001-07-02 19:59:40 +0000685 * GetFreeSpace (KERNEL.169)
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000686 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000687DWORD WINAPI GetFreeSpace16( UINT16 wFlags )
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000688{
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000689 MEMORYSTATUS ms;
Alexandre Julliardb1bac321996-12-15 19:45:59 +0000690 GlobalMemoryStatus( &ms );
691 return ms.dwAvailVirtual;
Alexandre Julliard3a405ba1994-10-30 16:25:19 +0000692}
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000693
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000694/***********************************************************************
695 * GlobalDOSAlloc (KERNEL.184)
Alexandre Julliard54c27111998-03-29 19:44:57 +0000696 * RETURNS
697 * Address (HW=Paragraph segment; LW=Selector)
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000698 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000699DWORD WINAPI GlobalDOSAlloc16(
Alexandre Julliard54c27111998-03-29 19:44:57 +0000700 DWORD size /* [in] Number of bytes to be allocated */
701) {
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000702 UINT16 uParagraph;
Ove Kaaven7b499142000-07-28 22:23:59 +0000703 LPVOID lpBlock = DOSMEM_GetBlock( size, &uParagraph );
Alexandre Julliard54c27111998-03-29 19:44:57 +0000704
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000705 if( lpBlock )
706 {
Alexandre Julliard21979011997-03-05 08:22:35 +0000707 HMODULE16 hModule = GetModuleHandle16("KERNEL");
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000708 WORD wSelector;
Andreas Mohrd23f5062000-10-02 22:16:21 +0000709 GLOBALARENA *pArena;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000710
Alexandre Julliard914406f2000-11-14 01:54:49 +0000711 wSelector = GLOBAL_CreateBlock(GMEM_FIXED, lpBlock, size, hModule, WINE_LDT_FLAGS_DATA );
Andreas Mohrd23f5062000-10-02 22:16:21 +0000712 pArena = GET_ARENA_PTR(wSelector);
713 pArena->flags |= GA_DOSMEM;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000714 return MAKELONG(wSelector,uParagraph);
715 }
716 return 0;
717}
718
Alexandre Julliard54c27111998-03-29 19:44:57 +0000719
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000720/***********************************************************************
721 * GlobalDOSFree (KERNEL.185)
Alexandre Julliard54c27111998-03-29 19:44:57 +0000722 * RETURNS
723 * NULL: Success
724 * sel: Failure
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000725 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000726WORD WINAPI GlobalDOSFree16(
Alexandre Julliard54c27111998-03-29 19:44:57 +0000727 WORD sel /* [in] Selector */
728) {
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000729 DWORD block = GetSelectorBase(sel);
730
731 if( block && block < 0x100000 )
732 {
733 LPVOID lpBlock = DOSMEM_MapDosToLinear( block );
Ove Kaaven7b499142000-07-28 22:23:59 +0000734 if( DOSMEM_FreeBlock( lpBlock ) )
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000735 GLOBAL_FreeBlock( sel );
736 sel = 0;
737 }
738 return sel;
739}
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000740
Alexandre Julliard54c27111998-03-29 19:44:57 +0000741
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000742/***********************************************************************
Patrik Stridvall3ca98232001-06-20 23:03:14 +0000743 * GlobalPageLock (KERNEL.191)
Patrik Stridvall044855c2001-07-11 18:56:41 +0000744 * GlobalSmartPageLock(KERNEL.230)
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000745 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000746WORD WINAPI GlobalPageLock16( HGLOBAL16 handle )
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000747{
Alexandre Julliard15657091999-05-23 10:25:25 +0000748 TRACE("%04x\n", handle );
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000749 if (!VALID_HANDLE(handle)) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000750 WARN("Invalid handle 0x%04x passed to GlobalPageLock!\n",handle);
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000751 return 0;
752 }
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000753 return ++(GET_ARENA_PTR(handle)->pageLockCount);
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000754}
755
756
757/***********************************************************************
Patrik Stridvall3ca98232001-06-20 23:03:14 +0000758 * GlobalPageUnlock (KERNEL.192)
Patrik Stridvall044855c2001-07-11 18:56:41 +0000759 * GlobalSmartPageUnlock(KERNEL.231)
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000760 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000761WORD WINAPI GlobalPageUnlock16( HGLOBAL16 handle )
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000762{
Alexandre Julliard15657091999-05-23 10:25:25 +0000763 TRACE("%04x\n", handle );
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000764 if (!VALID_HANDLE(handle)) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000765 WARN("Invalid handle 0x%04x passed to GlobalPageUnlock!\n",handle);
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000766 return 0;
767 }
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000768 return --(GET_ARENA_PTR(handle)->pageLockCount);
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000769}
770
771
772/***********************************************************************
Patrik Stridvall044855c2001-07-11 18:56:41 +0000773 * GlobalFix (KERNEL.197)
774 * GlobalFix16 (KERNEL32.27)
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000775 */
Ulrich Weigand85a7ff41998-10-11 19:10:10 +0000776WORD WINAPI GlobalFix16( HGLOBAL16 handle )
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000777{
Alexandre Julliard15657091999-05-23 10:25:25 +0000778 TRACE("%04x\n", handle );
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000779 if (!VALID_HANDLE(handle)) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000780 WARN("Invalid handle 0x%04x passed to GlobalFix16!\n",handle);
Ulrich Weigand85a7ff41998-10-11 19:10:10 +0000781 return 0;
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000782 }
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000783 GET_ARENA_PTR(handle)->lockCount++;
Ulrich Weigand85a7ff41998-10-11 19:10:10 +0000784
Alexandre Julliarda3960291999-02-26 11:11:13 +0000785 return GlobalHandleToSel16(handle);
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000786}
787
788
789/***********************************************************************
Patrik Stridvall044855c2001-07-11 18:56:41 +0000790 * GlobalUnfix (KERNEL.198)
791 * GlobalUnfix16 (KERNEL32.28)
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000792 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000793void WINAPI GlobalUnfix16( HGLOBAL16 handle )
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000794{
Alexandre Julliard15657091999-05-23 10:25:25 +0000795 TRACE("%04x\n", handle );
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000796 if (!VALID_HANDLE(handle)) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000797 WARN("Invalid handle 0x%04x passed to GlobalUnfix16!\n",handle);
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000798 return;
799 }
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000800 GET_ARENA_PTR(handle)->lockCount--;
801}
802
803
804/***********************************************************************
805 * FarSetOwner (KERNEL.403)
806 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000807void WINAPI FarSetOwner16( HGLOBAL16 handle, HANDLE16 hOwner )
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000808{
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000809 if (!VALID_HANDLE(handle)) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000810 WARN("Invalid handle 0x%04x passed to FarSetOwner!\n",handle);
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000811 return;
812 }
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000813 GET_ARENA_PTR(handle)->hOwner = hOwner;
814}
815
816
817/***********************************************************************
818 * FarGetOwner (KERNEL.404)
819 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000820HANDLE16 WINAPI FarGetOwner16( HGLOBAL16 handle )
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000821{
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000822 if (!VALID_HANDLE(handle)) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000823 WARN("Invalid handle 0x%04x passed to FarGetOwner!\n",handle);
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000824 return 0;
825 }
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000826 return GET_ARENA_PTR(handle)->hOwner;
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000827}
828
829
830/***********************************************************************
831 * GlobalHandleToSel (TOOLHELP.50)
832 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000833WORD WINAPI GlobalHandleToSel16( HGLOBAL16 handle )
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000834{
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000835 if (!handle) return 0;
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000836 if (!VALID_HANDLE(handle)) {
Alexandre Julliard15657091999-05-23 10:25:25 +0000837 WARN("Invalid handle 0x%04x passed to GlobalHandleToSel!\n",handle);
Alexandre Julliarda11d7b11998-03-01 20:05:02 +0000838 return 0;
839 }
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000840 if (!(handle & 7))
841 {
Alexandre Julliard15657091999-05-23 10:25:25 +0000842 WARN("Program attempted invalid selector conversion\n" );
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000843 return handle - 1;
844 }
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000845 return handle | 7;
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000846}
847
848
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000849/***********************************************************************
850 * GlobalFirst (TOOLHELP.51)
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000851 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000852BOOL16 WINAPI GlobalFirst16( GLOBALENTRY *pGlobal, WORD wFlags )
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000853{
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000854 if (wFlags == GLOBAL_LRU) return FALSE;
855 pGlobal->dwNext = 0;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000856 return GlobalNext16( pGlobal, wFlags );
Alexandre Julliarde2abbb11995-03-19 17:39:39 +0000857}
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000858
859
860/***********************************************************************
861 * GlobalNext (TOOLHELP.52)
862 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000863BOOL16 WINAPI GlobalNext16( GLOBALENTRY *pGlobal, WORD wFlags)
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000864{
865 GLOBALARENA *pArena;
866
Alexandre Julliard594997c1995-04-30 10:05:20 +0000867 if (pGlobal->dwNext >= globalArenaSize) return FALSE;
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000868 pArena = pGlobalArena + pGlobal->dwNext;
869 if (wFlags == GLOBAL_FREE) /* only free blocks */
870 {
871 int i;
872 for (i = pGlobal->dwNext; i < globalArenaSize; i++, pArena++)
873 if (pArena->size == 0) break; /* block is free */
874 if (i >= globalArenaSize) return FALSE;
875 pGlobal->dwNext = i;
876 }
877
878 pGlobal->dwAddress = pArena->base;
879 pGlobal->dwBlockSize = pArena->size;
880 pGlobal->hBlock = pArena->handle;
881 pGlobal->wcLock = pArena->lockCount;
882 pGlobal->wcPageLock = pArena->pageLockCount;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000883 pGlobal->wFlags = (GetCurrentPDB16() == pArena->hOwner);
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000884 pGlobal->wHeapPresent = FALSE;
885 pGlobal->hOwner = pArena->hOwner;
886 pGlobal->wType = GT_UNKNOWN;
887 pGlobal->wData = 0;
888 pGlobal->dwNext++;
889 return TRUE;
890}
891
892
893/***********************************************************************
894 * GlobalInfo (TOOLHELP.53)
895 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000896BOOL16 WINAPI GlobalInfo16( GLOBALINFO *pInfo )
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000897{
898 int i;
899 GLOBALARENA *pArena;
900
901 pInfo->wcItems = globalArenaSize;
902 pInfo->wcItemsFree = 0;
903 pInfo->wcItemsLRU = 0;
904 for (i = 0, pArena = pGlobalArena; i < globalArenaSize; i++, pArena++)
905 if (pArena->size == 0) pInfo->wcItemsFree++;
906 return TRUE;
907}
908
909
910/***********************************************************************
911 * GlobalEntryHandle (TOOLHELP.54)
912 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000913BOOL16 WINAPI GlobalEntryHandle16( GLOBALENTRY *pGlobal, HGLOBAL16 hItem )
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000914{
Alexandre Julliard03468f71998-02-15 19:40:49 +0000915 GLOBALARENA *pArena = GET_ARENA_PTR(hItem);
916
917 pGlobal->dwAddress = pArena->base;
918 pGlobal->dwBlockSize = pArena->size;
919 pGlobal->hBlock = pArena->handle;
920 pGlobal->wcLock = pArena->lockCount;
921 pGlobal->wcPageLock = pArena->pageLockCount;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000922 pGlobal->wFlags = (GetCurrentPDB16() == pArena->hOwner);
Alexandre Julliard03468f71998-02-15 19:40:49 +0000923 pGlobal->wHeapPresent = FALSE;
924 pGlobal->hOwner = pArena->hOwner;
925 pGlobal->wType = GT_UNKNOWN;
926 pGlobal->wData = 0;
927 pGlobal->dwNext++;
928 return TRUE;
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000929}
930
931
932/***********************************************************************
933 * GlobalEntryModule (TOOLHELP.55)
934 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000935BOOL16 WINAPI GlobalEntryModule16( GLOBALENTRY *pGlobal, HMODULE16 hModule,
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000936 WORD wSeg )
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000937{
Andreas Mohrd23f5062000-10-02 22:16:21 +0000938 FIXME("(%p, 0x%04x, 0x%04x), stub.\n", pGlobal, hModule, wSeg);
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000939 return FALSE;
940}
941
942
943/***********************************************************************
944 * MemManInfo (TOOLHELP.72)
945 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000946BOOL16 WINAPI MemManInfo16( MEMMANINFO *info )
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000947{
Alexandre Julliard75d86e11996-11-17 18:59:11 +0000948 MEMORYSTATUS status;
Alexandre Julliard4f8c37b1996-01-14 18:12:01 +0000949
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000950 /*
951 * Not unsurprisingly although the documention says you
952 * _must_ provide the size in the dwSize field, this function
953 * (under Windows) always fills the structure and returns true.
954 */
Alexandre Julliard75d86e11996-11-17 18:59:11 +0000955 GlobalMemoryStatus( &status );
Alexandre Julliard982a2232000-12-13 20:20:09 +0000956 info->wPageSize = getpagesize();
Alexandre Julliard75d86e11996-11-17 18:59:11 +0000957 info->dwLargestFreeBlock = status.dwAvailVirtual;
958 info->dwMaxPagesAvailable = info->dwLargestFreeBlock / info->wPageSize;
959 info->dwMaxPagesLockable = info->dwMaxPagesAvailable;
960 info->dwTotalLinearSpace = status.dwTotalVirtual / info->wPageSize;
961 info->dwTotalUnlockedPages = info->dwTotalLinearSpace;
962 info->dwFreePages = info->dwMaxPagesAvailable;
963 info->dwTotalPages = info->dwTotalLinearSpace;
964 info->dwFreeLinearSpace = info->dwMaxPagesAvailable;
965 info->dwSwapFilePages = status.dwTotalPageFile / info->wPageSize;
Alexandre Julliardfa68b751995-04-03 16:55:37 +0000966 return TRUE;
967}
Alexandre Julliard2787be81995-05-22 18:23:01 +0000968
Alexandre Julliard60ce85c1998-02-01 18:33:27 +0000969/***********************************************************************
970 * GetFreeMemInfo (KERNEL.316)
971 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000972DWORD WINAPI GetFreeMemInfo16(void)
Alexandre Julliard60ce85c1998-02-01 18:33:27 +0000973{
974 MEMMANINFO info;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000975 MemManInfo16( &info );
Alexandre Julliard60ce85c1998-02-01 18:33:27 +0000976 return MAKELONG( info.dwTotalLinearSpace, info.dwMaxPagesAvailable );
977}
978
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000979/*
980 * Win32 Global heap functions (GlobalXXX).
981 * These functions included in Win32 for compatibility with 16 bit Windows
982 * Especially the moveable blocks and handles are oldish.
983 * But the ability to directly allocate memory with GPTR and LPTR is widely
984 * used.
985 *
986 * The handle stuff looks horrible, but it's implemented almost like Win95
987 * does it.
988 *
989 */
990
991#define MAGIC_GLOBAL_USED 0x5342
992#define GLOBAL_LOCK_MAX 0xFF
Alexandre Julliard17216f51997-10-12 16:30:17 +0000993#define HANDLE_TO_INTERN(h) ((PGLOBAL32_INTERN)(((char *)(h))-2))
Alexandre Julliarda3960291999-02-26 11:11:13 +0000994#define INTERN_TO_HANDLE(i) ((HGLOBAL) &((i)->Pointer))
995#define POINTER_TO_HANDLE(p) (*(((HGLOBAL *)(p))-1))
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000996#define ISHANDLE(h) (((DWORD)(h)&2)!=0)
997#define ISPOINTER(h) (((DWORD)(h)&2)==0)
998
999typedef struct __GLOBAL32_INTERN
1000{
1001 WORD Magic;
1002 LPVOID Pointer WINE_PACKED;
1003 BYTE Flags;
1004 BYTE LockCount;
1005} GLOBAL32_INTERN, *PGLOBAL32_INTERN;
1006
Alexandre Julliard1285c2f1996-05-06 16:06:24 +00001007
1008/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +00001009 * GlobalAlloc (KERNEL32.@)
Alexandre Julliard54c27111998-03-29 19:44:57 +00001010 * RETURNS
1011 * Handle: Success
1012 * NULL: Failure
Alexandre Julliard1285c2f1996-05-06 16:06:24 +00001013 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001014HGLOBAL WINAPI GlobalAlloc(
1015 UINT flags, /* [in] Object allocation attributes */
Alexandre Julliard54c27111998-03-29 19:44:57 +00001016 DWORD size /* [in] Number of bytes to allocate */
1017) {
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001018 PGLOBAL32_INTERN pintern;
1019 DWORD hpflags;
1020 LPVOID palloc;
Alexandre Julliard1285c2f1996-05-06 16:06:24 +00001021
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001022 if(flags&GMEM_ZEROINIT)
1023 hpflags=HEAP_ZERO_MEMORY;
1024 else
1025 hpflags=0;
1026
Noel Borthwick83579c81999-07-24 12:18:04 +00001027 TRACE("() flags=%04x\n", flags );
1028
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001029 if((flags & GMEM_MOVEABLE)==0) /* POINTER */
1030 {
1031 palloc=HeapAlloc(GetProcessHeap(), hpflags, size);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001032 return (HGLOBAL) palloc;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001033 }
1034 else /* HANDLE */
1035 {
Noel Borthwick83579c81999-07-24 12:18:04 +00001036 /* HeapLock(heap); */
1037
Alexandre Julliard61d32b42001-02-23 01:35:36 +00001038 pintern=HeapAlloc(GetProcessHeap(), 0, sizeof(GLOBAL32_INTERN));
Alexandre Julliard982a2232000-12-13 20:20:09 +00001039 if (!pintern) return 0;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001040 if(size)
1041 {
Alexandre Julliard61d32b42001-02-23 01:35:36 +00001042 if (!(palloc=HeapAlloc(GetProcessHeap(), hpflags, size+sizeof(HGLOBAL)))) {
1043 HeapFree(GetProcessHeap(), 0, pintern);
Alexandre Julliard982a2232000-12-13 20:20:09 +00001044 return 0;
Eric Pouech3bcfb902000-06-24 12:51:24 +00001045 }
Alexandre Julliarda3960291999-02-26 11:11:13 +00001046 *(HGLOBAL *)palloc=INTERN_TO_HANDLE(pintern);
Patrik Stridvalla9a671d1999-04-25 19:01:52 +00001047 pintern->Pointer=(char *) palloc+sizeof(HGLOBAL);
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001048 }
1049 else
1050 pintern->Pointer=NULL;
1051 pintern->Magic=MAGIC_GLOBAL_USED;
1052 pintern->Flags=flags>>8;
1053 pintern->LockCount=0;
1054
Noel Borthwick83579c81999-07-24 12:18:04 +00001055 /* HeapUnlock(heap); */
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001056
1057 return INTERN_TO_HANDLE(pintern);
1058 }
1059}
1060
1061
1062/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +00001063 * GlobalLock (KERNEL32.@)
Alexandre Julliard54c27111998-03-29 19:44:57 +00001064 * RETURNS
1065 * Pointer to first byte of block
1066 * NULL: Failure
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001067 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001068LPVOID WINAPI GlobalLock(
1069 HGLOBAL hmem /* [in] Handle of global memory object */
Alexandre Julliard54c27111998-03-29 19:44:57 +00001070) {
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001071 PGLOBAL32_INTERN pintern;
1072 LPVOID palloc;
1073
1074 if(ISPOINTER(hmem))
1075 return (LPVOID) hmem;
1076
1077 /* HeapLock(GetProcessHeap()); */
1078
1079 pintern=HANDLE_TO_INTERN(hmem);
1080 if(pintern->Magic==MAGIC_GLOBAL_USED)
1081 {
1082 if(pintern->LockCount<GLOBAL_LOCK_MAX)
1083 pintern->LockCount++;
1084 palloc=pintern->Pointer;
1085 }
1086 else
1087 {
Alexandre Julliard15657091999-05-23 10:25:25 +00001088 WARN("invalid handle\n");
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001089 palloc=(LPVOID) NULL;
Dmitry Timoshkovc34fe082000-11-27 01:33:25 +00001090 SetLastError(ERROR_INVALID_HANDLE);
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001091 }
1092 /* HeapUnlock(GetProcessHeap()); */;
1093 return palloc;
1094}
1095
1096
1097/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +00001098 * GlobalUnlock (KERNEL32.@)
Alexandre Julliard54c27111998-03-29 19:44:57 +00001099 * RETURNS
1100 * TRUE: Object is still locked
1101 * FALSE: Object is unlocked
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001102 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001103BOOL WINAPI GlobalUnlock(
1104 HGLOBAL hmem /* [in] Handle of global memory object */
Alexandre Julliard54c27111998-03-29 19:44:57 +00001105) {
Andreas Mohr55a14ed2001-11-20 20:26:35 +00001106 PGLOBAL32_INTERN pintern;
1107 BOOL locked;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001108
Andreas Mohr55a14ed2001-11-20 20:26:35 +00001109 if (ISPOINTER(hmem)) return FALSE;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001110
Andreas Mohr55a14ed2001-11-20 20:26:35 +00001111 __TRY
1112 {
1113 /* HeapLock(GetProcessHeap()); */
1114 pintern=HANDLE_TO_INTERN(hmem);
1115 if(pintern->Magic==MAGIC_GLOBAL_USED)
1116 {
1117 if((pintern->LockCount<GLOBAL_LOCK_MAX)&&(pintern->LockCount>0))
1118 pintern->LockCount--;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001119
Andreas Mohr55a14ed2001-11-20 20:26:35 +00001120 locked = (pintern->LockCount != 0);
1121 if (!locked) SetLastError(NO_ERROR);
1122 }
1123 else
1124 {
1125 WARN("invalid handle\n");
1126 SetLastError(ERROR_INVALID_HANDLE);
1127 locked=FALSE;
1128 }
1129 /* HeapUnlock(GetProcessHeap()); */
1130 }
1131 __EXCEPT(page_fault)
1132 {
1133 ERR("page fault occurred ! Caused by bug ?\n");
1134 SetLastError( ERROR_INVALID_PARAMETER );
1135 return FALSE;
1136 }
1137 __ENDTRY
1138 return locked;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001139}
1140
1141
1142/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +00001143 * GlobalHandle (KERNEL32.@)
Alexandre Julliard54c27111998-03-29 19:44:57 +00001144 * Returns the handle associated with the specified pointer.
1145 *
Alexandre Julliard54c27111998-03-29 19:44:57 +00001146 * RETURNS
1147 * Handle: Success
1148 * NULL: Failure
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001149 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001150HGLOBAL WINAPI GlobalHandle(
Alexandre Julliard54c27111998-03-29 19:44:57 +00001151 LPCVOID pmem /* [in] Pointer to global memory block */
1152) {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001153 HGLOBAL handle;
Guy Albertelli4ef64132000-01-23 02:25:11 +00001154 PGLOBAL32_INTERN maybe_intern;
1155 LPCVOID test;
Guy Albertelli98679972000-01-15 21:59:12 +00001156
1157 if (!pmem)
1158 {
Lawson Whitney969515d2000-10-02 22:27:37 +00001159 SetLastError( ERROR_INVALID_PARAMETER );
1160 return 0;
Guy Albertelli98679972000-01-15 21:59:12 +00001161 }
Alexandre Julliard60ce85c1998-02-01 18:33:27 +00001162
Lawson Whitney969515d2000-10-02 22:27:37 +00001163 __TRY
1164 {
1165 handle = 0;
Guy Albertelli4ef64132000-01-23 02:25:11 +00001166
Lawson Whitney969515d2000-10-02 22:27:37 +00001167 /* note that if pmem is a pointer to a a block allocated by */
1168 /* GlobalAlloc with GMEM_MOVEABLE then magic test in HeapValidate */
1169 /* will fail. */
1170 if (ISPOINTER(pmem)) {
Alexandre Julliard61d32b42001-02-23 01:35:36 +00001171 if (HeapValidate( GetProcessHeap(), 0, pmem )) {
Lawson Whitney969515d2000-10-02 22:27:37 +00001172 handle = (HGLOBAL)pmem; /* valid fixed block */
1173 break;
1174 }
1175 handle = POINTER_TO_HANDLE(pmem);
1176 } else
1177 handle = (HGLOBAL)pmem;
1178
1179 /* Now test handle either passed in or retrieved from pointer */
Lawson Whitney969515d2000-10-02 22:27:37 +00001180 maybe_intern = HANDLE_TO_INTERN( handle );
1181 if (maybe_intern->Magic == MAGIC_GLOBAL_USED) {
1182 test = maybe_intern->Pointer;
Alexandre Julliard61d32b42001-02-23 01:35:36 +00001183 if (HeapValidate( GetProcessHeap(), 0, ((HGLOBAL *)test)-1 ) && /* obj(-handle) valid arena? */
1184 HeapValidate( GetProcessHeap(), 0, maybe_intern )) /* intern valid arena? */
Lawson Whitney969515d2000-10-02 22:27:37 +00001185 break; /* valid moveable block */
1186 }
1187 handle = 0;
1188 SetLastError( ERROR_INVALID_HANDLE );
Alexandre Julliard17216f51997-10-12 16:30:17 +00001189 }
Lawson Whitney969515d2000-10-02 22:27:37 +00001190 __EXCEPT(page_fault)
1191 {
1192 SetLastError( ERROR_INVALID_HANDLE );
1193 return 0;
1194 }
1195 __ENDTRY
Alexandre Julliard17216f51997-10-12 16:30:17 +00001196
Lawson Whitney969515d2000-10-02 22:27:37 +00001197 return handle;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001198}
1199
1200
1201/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +00001202 * GlobalReAlloc (KERNEL32.@)
Alexandre Julliard54c27111998-03-29 19:44:57 +00001203 * RETURNS
1204 * Handle: Success
1205 * NULL: Failure
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001206 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001207HGLOBAL WINAPI GlobalReAlloc(
1208 HGLOBAL hmem, /* [in] Handle of global memory object */
Alexandre Julliard54c27111998-03-29 19:44:57 +00001209 DWORD size, /* [in] New size of block */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001210 UINT flags /* [in] How to reallocate object */
Alexandre Julliard54c27111998-03-29 19:44:57 +00001211) {
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001212 LPVOID palloc;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001213 HGLOBAL hnew;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001214 PGLOBAL32_INTERN pintern;
Alexandre Julliardd10ca9c1999-09-04 11:26:56 +00001215 DWORD heap_flags = (flags & GMEM_ZEROINIT) ? HEAP_ZERO_MEMORY : 0;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001216
Alexandre Julliard02e90081998-01-04 17:49:09 +00001217 hnew = 0;
Noel Borthwick83579c81999-07-24 12:18:04 +00001218 /* HeapLock(heap); */
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001219 if(flags & GMEM_MODIFY) /* modify flags */
1220 {
1221 if( ISPOINTER(hmem) && (flags & GMEM_MOVEABLE))
1222 {
1223 /* make a fixed block moveable
1224 * actually only NT is able to do this. But it's soo simple
1225 */
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001226 if (hmem == 0)
1227 {
Alexandre Julliard15657091999-05-23 10:25:25 +00001228 ERR("GlobalReAlloc32 with null handle!\n");
Alexandre Julliard0ad42fa1999-01-31 15:04:42 +00001229 SetLastError( ERROR_NOACCESS );
Alexandre Julliarda0d77311998-09-13 16:32:00 +00001230 return 0;
1231 }
Alexandre Julliard61d32b42001-02-23 01:35:36 +00001232 size=HeapSize(GetProcessHeap(), 0, (LPVOID) hmem);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001233 hnew=GlobalAlloc( flags, size);
1234 palloc=GlobalLock(hnew);
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001235 memcpy(palloc, (LPVOID) hmem, size);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001236 GlobalUnlock(hnew);
1237 GlobalFree(hmem);
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001238 }
1239 else if( ISPOINTER(hmem) &&(flags & GMEM_DISCARDABLE))
1240 {
1241 /* change the flags to make our block "discardable" */
1242 pintern=HANDLE_TO_INTERN(hmem);
1243 pintern->Flags = pintern->Flags | (GMEM_DISCARDABLE >> 8);
1244 hnew=hmem;
1245 }
1246 else
1247 {
1248 SetLastError(ERROR_INVALID_PARAMETER);
Alexandre Julliard02e90081998-01-04 17:49:09 +00001249 hnew = 0;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001250 }
1251 }
1252 else
1253 {
1254 if(ISPOINTER(hmem))
1255 {
1256 /* reallocate fixed memory */
Alexandre Julliard61d32b42001-02-23 01:35:36 +00001257 hnew=(HGLOBAL)HeapReAlloc(GetProcessHeap(), heap_flags, (LPVOID) hmem, size);
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001258 }
1259 else
1260 {
1261 /* reallocate a moveable block */
1262 pintern=HANDLE_TO_INTERN(hmem);
Ulrich Weigand2e7008c2000-10-19 20:24:25 +00001263
1264#if 0
1265/* Apparently Windows doesn't care whether the handle is locked at this point */
1266/* See also the same comment in GlobalFree() */
Alexandre Julliardc7c217b1998-04-13 12:21:30 +00001267 if(pintern->LockCount>1) {
Alexandre Julliard15657091999-05-23 10:25:25 +00001268 ERR("handle 0x%08lx is still locked, cannot realloc!\n",(DWORD)hmem);
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001269 SetLastError(ERROR_INVALID_HANDLE);
Ulrich Weigand2e7008c2000-10-19 20:24:25 +00001270 } else
1271#endif
1272 if(size!=0)
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001273 {
1274 hnew=hmem;
1275 if(pintern->Pointer)
1276 {
Alexandre Julliard61d32b42001-02-23 01:35:36 +00001277 if((palloc = HeapReAlloc(GetProcessHeap(), heap_flags,
Huw D M Daviesc43fdb72000-04-13 15:57:06 +00001278 (char *) pintern->Pointer-sizeof(HGLOBAL),
1279 size+sizeof(HGLOBAL))) == NULL)
1280 return 0; /* Block still valid */
Patrik Stridvalla9a671d1999-04-25 19:01:52 +00001281 pintern->Pointer=(char *) palloc+sizeof(HGLOBAL);
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001282 }
1283 else
1284 {
Alexandre Julliard61d32b42001-02-23 01:35:36 +00001285 if((palloc=HeapAlloc(GetProcessHeap(), heap_flags, size+sizeof(HGLOBAL)))
Huw D M Daviesc43fdb72000-04-13 15:57:06 +00001286 == NULL)
1287 return 0;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001288 *(HGLOBAL *)palloc=hmem;
Patrik Stridvalla9a671d1999-04-25 19:01:52 +00001289 pintern->Pointer=(char *) palloc+sizeof(HGLOBAL);
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001290 }
1291 }
1292 else
1293 {
1294 if(pintern->Pointer)
1295 {
Alexandre Julliard61d32b42001-02-23 01:35:36 +00001296 HeapFree(GetProcessHeap(), 0, (char *) pintern->Pointer-sizeof(HGLOBAL));
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001297 pintern->Pointer=NULL;
1298 }
1299 }
1300 }
1301 }
Noel Borthwick83579c81999-07-24 12:18:04 +00001302 /* HeapUnlock(heap); */
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001303 return hnew;
1304}
1305
1306
1307/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +00001308 * GlobalFree (KERNEL32.@)
Alexandre Julliard54c27111998-03-29 19:44:57 +00001309 * RETURNS
1310 * NULL: Success
1311 * Handle: Failure
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001312 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001313HGLOBAL WINAPI GlobalFree(
1314 HGLOBAL hmem /* [in] Handle of global memory object */
Alexandre Julliard54c27111998-03-29 19:44:57 +00001315) {
Andreas Mohr55a14ed2001-11-20 20:26:35 +00001316 PGLOBAL32_INTERN pintern;
1317 HGLOBAL hreturned;
Alexandre Julliard61d32b42001-02-23 01:35:36 +00001318
Andreas Mohr55a14ed2001-11-20 20:26:35 +00001319 __TRY
1320 {
1321 hreturned = 0;
1322 if(ISPOINTER(hmem)) /* POINTER */
1323 {
1324 if(!HeapFree(GetProcessHeap(), 0, (LPVOID) hmem)) hmem = 0;
1325 }
1326 else /* HANDLE */
1327 {
1328 /* HeapLock(heap); */
1329 pintern=HANDLE_TO_INTERN(hmem);
Guy Albertelli4ef64132000-01-23 02:25:11 +00001330
Andreas Mohr55a14ed2001-11-20 20:26:35 +00001331 if(pintern->Magic==MAGIC_GLOBAL_USED)
1332 {
Guy Albertelli4ef64132000-01-23 02:25:11 +00001333
Andreas Mohr55a14ed2001-11-20 20:26:35 +00001334 /* WIN98 does not make this test. That is you can free a */
1335 /* block you have not unlocked. Go figure!! */
1336 /* if(pintern->LockCount!=0) */
1337 /* SetLastError(ERROR_INVALID_HANDLE); */
1338
1339 if(pintern->Pointer)
1340 if(!HeapFree(GetProcessHeap(), 0, (char *)(pintern->Pointer)-sizeof(HGLOBAL)))
1341 hreturned=hmem;
1342 if(!HeapFree(GetProcessHeap(), 0, pintern))
1343 hreturned=hmem;
1344 }
1345 /* HeapUnlock(heap); */
1346 }
1347 }
1348 __EXCEPT(page_fault)
1349 {
1350 ERR("page fault occurred ! Caused by bug ?\n");
1351 SetLastError( ERROR_INVALID_PARAMETER );
1352 return hmem;
1353 }
1354 __ENDTRY
1355 return hreturned;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001356}
1357
1358
1359/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +00001360 * GlobalSize (KERNEL32.@)
Alexandre Julliard54c27111998-03-29 19:44:57 +00001361 * RETURNS
1362 * Size in bytes of the global memory object
1363 * 0: Failure
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001364 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001365DWORD WINAPI GlobalSize(
1366 HGLOBAL hmem /* [in] Handle of global memory object */
Alexandre Julliard54c27111998-03-29 19:44:57 +00001367) {
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001368 DWORD retval;
1369 PGLOBAL32_INTERN pintern;
1370
1371 if(ISPOINTER(hmem))
1372 {
Alexandre Julliard61d32b42001-02-23 01:35:36 +00001373 retval=HeapSize(GetProcessHeap(), 0, (LPVOID) hmem);
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001374 }
1375 else
1376 {
Noel Borthwick83579c81999-07-24 12:18:04 +00001377 /* HeapLock(heap); */
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001378 pintern=HANDLE_TO_INTERN(hmem);
1379
1380 if(pintern->Magic==MAGIC_GLOBAL_USED)
1381 {
Guy Albertelli3db8e191999-02-14 17:38:24 +00001382 if (!pintern->Pointer) /* handle case of GlobalAlloc( ??,0) */
1383 return 0;
Alexandre Julliard61d32b42001-02-23 01:35:36 +00001384 retval=HeapSize(GetProcessHeap(), 0,
Alexandre Julliarda3960291999-02-26 11:11:13 +00001385 (char *)(pintern->Pointer)-sizeof(HGLOBAL))-4;
Rein Klazeseaec1ee1999-07-11 13:50:24 +00001386 if (retval == 0xffffffff-4) retval = 0;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001387 }
1388 else
1389 {
Alexandre Julliard15657091999-05-23 10:25:25 +00001390 WARN("invalid handle\n");
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001391 retval=0;
1392 }
Noel Borthwick83579c81999-07-24 12:18:04 +00001393 /* HeapUnlock(heap); */
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001394 }
Guy Albertelli3db8e191999-02-14 17:38:24 +00001395 /* HeapSize returns 0xffffffff on failure */
1396 if (retval == 0xffffffff) retval = 0;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001397 return retval;
1398}
1399
1400
1401/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +00001402 * GlobalWire (KERNEL32.@)
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001403 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001404LPVOID WINAPI GlobalWire(HGLOBAL hmem)
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001405{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001406 return GlobalLock( hmem );
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001407}
1408
1409
1410/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +00001411 * GlobalUnWire (KERNEL32.@)
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001412 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001413BOOL WINAPI GlobalUnWire(HGLOBAL hmem)
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001414{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001415 return GlobalUnlock( hmem);
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001416}
1417
1418
1419/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +00001420 * GlobalFix (KERNEL32.@)
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001421 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001422VOID WINAPI GlobalFix(HGLOBAL hmem)
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001423{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001424 GlobalLock( hmem );
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001425}
1426
1427
1428/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +00001429 * GlobalUnfix (KERNEL32.@)
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001430 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001431VOID WINAPI GlobalUnfix(HGLOBAL hmem)
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001432{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001433 GlobalUnlock( hmem);
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001434}
1435
1436
1437/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +00001438 * GlobalFlags (KERNEL32.@)
Alexandre Julliard54c27111998-03-29 19:44:57 +00001439 * Returns information about the specified global memory object
1440 *
1441 * NOTES
1442 * Should this return GMEM_INVALID_HANDLE on invalid handle?
1443 *
1444 * RETURNS
1445 * Value specifying allocation flags and lock count
1446 * GMEM_INVALID_HANDLE: Failure
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001447 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001448UINT WINAPI GlobalFlags(
1449 HGLOBAL hmem /* [in] Handle to global memory object */
Alexandre Julliard54c27111998-03-29 19:44:57 +00001450) {
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001451 DWORD retval;
1452 PGLOBAL32_INTERN pintern;
1453
1454 if(ISPOINTER(hmem))
1455 {
1456 retval=0;
1457 }
1458 else
1459 {
1460 /* HeapLock(GetProcessHeap()); */
1461 pintern=HANDLE_TO_INTERN(hmem);
1462 if(pintern->Magic==MAGIC_GLOBAL_USED)
1463 {
1464 retval=pintern->LockCount + (pintern->Flags<<8);
1465 if(pintern->Pointer==0)
1466 retval|= GMEM_DISCARDED;
1467 }
1468 else
1469 {
Francois Gougete76218d2001-05-09 17:31:31 +00001470 WARN("Invalid handle: %04x\n", hmem);
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001471 retval=0;
1472 }
1473 /* HeapUnlock(GetProcessHeap()); */
1474 }
1475 return retval;
Alexandre Julliard1285c2f1996-05-06 16:06:24 +00001476}
1477
1478
1479/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +00001480 * GlobalCompact (KERNEL32.@)
Alexandre Julliard1285c2f1996-05-06 16:06:24 +00001481 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001482DWORD WINAPI GlobalCompact( DWORD minfree )
Alexandre Julliard1285c2f1996-05-06 16:06:24 +00001483{
1484 return 0; /* GlobalCompact does nothing in Win32 */
1485}
1486
1487
1488/***********************************************************************
Patrik Stridvalldae8de62001-06-13 20:13:18 +00001489 * GlobalMemoryStatus (KERNEL32.@)
Alexandre Julliard54c27111998-03-29 19:44:57 +00001490 * RETURNS
1491 * None
Alexandre Julliard0e270f41996-08-24 18:26:35 +00001492 */
Alexandre Julliard54c27111998-03-29 19:44:57 +00001493VOID WINAPI GlobalMemoryStatus(
1494 LPMEMORYSTATUS lpmem
1495) {
Marcus Meissner6189c192000-03-04 19:19:15 +00001496 static MEMORYSTATUS cached_memstatus;
1497 static int cache_lastchecked = 0;
Francois Gougetea5924c2000-10-28 00:34:29 +00001498 SYSTEM_INFO si;
Patrik Stridvall7e9913f2000-03-08 18:25:22 +00001499#ifdef linux
Marcus Meissner6189c192000-03-04 19:19:15 +00001500 FILE *f;
Patrik Stridvall7e9913f2000-03-08 18:25:22 +00001501#endif
Marcus Meissner6189c192000-03-04 19:19:15 +00001502
1503 if (time(NULL)==cache_lastchecked) {
1504 memcpy(lpmem,&cached_memstatus,sizeof(MEMORYSTATUS));
1505 return;
1506 }
1507 cache_lastchecked = time(NULL);
1508
Alexandre Julliard75d86e11996-11-17 18:59:11 +00001509#ifdef linux
Marcus Meissner6189c192000-03-04 19:19:15 +00001510 f = fopen( "/proc/meminfo", "r" );
Alexandre Julliard75d86e11996-11-17 18:59:11 +00001511 if (f)
1512 {
1513 char buffer[256];
Stephen Crowley59c4a321998-11-24 20:41:02 +00001514 int total, used, free, shared, buffers, cached;
Alexandre Julliard75d86e11996-11-17 18:59:11 +00001515
Stephen Crowley59c4a321998-11-24 20:41:02 +00001516 lpmem->dwLength = sizeof(MEMORYSTATUS);
Alexandre Julliard75d86e11996-11-17 18:59:11 +00001517 lpmem->dwTotalPhys = lpmem->dwAvailPhys = 0;
1518 lpmem->dwTotalPageFile = lpmem->dwAvailPageFile = 0;
1519 while (fgets( buffer, sizeof(buffer), f ))
1520 {
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001521 /* old style /proc/meminfo ... */
Stephen Crowley59c4a321998-11-24 20:41:02 +00001522 if (sscanf( buffer, "Mem: %d %d %d %d %d %d", &total, &used, &free, &shared, &buffers, &cached ))
Alexandre Julliard75d86e11996-11-17 18:59:11 +00001523 {
1524 lpmem->dwTotalPhys += total;
Stephen Crowley59c4a321998-11-24 20:41:02 +00001525 lpmem->dwAvailPhys += free + buffers + cached;
Alexandre Julliard75d86e11996-11-17 18:59:11 +00001526 }
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001527 if (sscanf( buffer, "Swap: %d %d %d", &total, &used, &free ))
Alexandre Julliard75d86e11996-11-17 18:59:11 +00001528 {
1529 lpmem->dwTotalPageFile += total;
1530 lpmem->dwAvailPageFile += free;
1531 }
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001532
1533 /* new style /proc/meminfo ... */
1534 if (sscanf(buffer, "MemTotal: %d", &total))
1535 lpmem->dwTotalPhys = total*1024;
1536 if (sscanf(buffer, "MemFree: %d", &free))
1537 lpmem->dwAvailPhys = free*1024;
1538 if (sscanf(buffer, "SwapTotal: %d", &total))
1539 lpmem->dwTotalPageFile = total*1024;
1540 if (sscanf(buffer, "SwapFree: %d", &free))
1541 lpmem->dwAvailPageFile = free*1024;
Stephen Crowley59c4a321998-11-24 20:41:02 +00001542 if (sscanf(buffer, "Buffers: %d", &buffers))
1543 lpmem->dwAvailPhys += buffers*1024;
1544 if (sscanf(buffer, "Cached: %d", &cached))
1545 lpmem->dwAvailPhys += cached*1024;
Alexandre Julliard75d86e11996-11-17 18:59:11 +00001546 }
1547 fclose( f );
1548
1549 if (lpmem->dwTotalPhys)
1550 {
Francois Gougetea5924c2000-10-28 00:34:29 +00001551 DWORD TotalPhysical = lpmem->dwTotalPhys+lpmem->dwTotalPageFile;
1552 DWORD AvailPhysical = lpmem->dwAvailPhys+lpmem->dwAvailPageFile;
1553 lpmem->dwMemoryLoad = (TotalPhysical-AvailPhysical)
1554 / (TotalPhysical / 100);
Alexandre Julliard75d86e11996-11-17 18:59:11 +00001555 }
Marcus Meissnerfddbcf32000-03-07 12:24:58 +00001556 } else
Alexandre Julliard75d86e11996-11-17 18:59:11 +00001557#endif
Marcus Meissnerfddbcf32000-03-07 12:24:58 +00001558 {
1559 /* FIXME: should do something for other systems */
1560 lpmem->dwMemoryLoad = 0;
1561 lpmem->dwTotalPhys = 16*1024*1024;
1562 lpmem->dwAvailPhys = 16*1024*1024;
1563 lpmem->dwTotalPageFile = 16*1024*1024;
1564 lpmem->dwAvailPageFile = 16*1024*1024;
Marcus Meissnerfddbcf32000-03-07 12:24:58 +00001565 }
Francois Gougetea5924c2000-10-28 00:34:29 +00001566 GetSystemInfo(&si);
1567 lpmem->dwTotalVirtual = si.lpMaximumApplicationAddress-si.lpMinimumApplicationAddress;
1568 /* FIXME: we should track down all the already allocated VM pages and substract them, for now arbitrarily remove 64KB so that it matches NT */
1569 lpmem->dwAvailVirtual = lpmem->dwTotalVirtual-64*1024;
Marcus Meissnerfddbcf32000-03-07 12:24:58 +00001570 memcpy(&cached_memstatus,lpmem,sizeof(MEMORYSTATUS));
Mike McCormackc56a79a2001-01-04 19:52:51 +00001571
1572 /* it appears some memory display programs want to divide by these values */
1573 if(lpmem->dwTotalPageFile==0)
1574 lpmem->dwTotalPageFile++;
1575
1576 if(lpmem->dwAvailPageFile==0)
1577 lpmem->dwAvailPageFile++;
Alexandre Julliard0e270f41996-08-24 18:26:35 +00001578}
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001579
Alexandre Julliard4220b291999-07-11 17:20:01 +00001580/***********************************************************************
Patrik Stridvall01d5e5b2001-07-02 19:59:40 +00001581 * A20Proc (KERNEL.165)
Patrik Stridvall044855c2001-07-11 18:56:41 +00001582 * A20_Proc (SYSTEM.20)
Alexandre Julliard4220b291999-07-11 17:20:01 +00001583 */
1584void WINAPI A20Proc16( WORD unused )
1585{
1586 /* this is also a NOP in Windows */
1587}
1588
1589/***********************************************************************
Patrik Stridvall01d5e5b2001-07-02 19:59:40 +00001590 * LimitEMSPages (KERNEL.156)
Alexandre Julliard4220b291999-07-11 17:20:01 +00001591 */
1592DWORD WINAPI LimitEMSPages16( DWORD unused )
1593{
1594 return 0;
1595}