Alexandre Julliard | 234bc24 | 1994-12-10 13:02:28 +0000 | [diff] [blame] | 1 | /* |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 2 | * Global heap functions |
| 3 | * |
| 4 | * Copyright 1995 Alexandre Julliard |
| 5 | */ |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 6 | /* 0xffff sometimes seems to mean: CURRENT_DS */ |
Alexandre Julliard | 121bd98 | 1993-07-08 17:37:25 +0000 | [diff] [blame] | 7 | |
François Gouget | 1425941 | 2001-11-06 20:57:11 +0000 | [diff] [blame] | 8 | #include "config.h" |
Francois Gouget | 386cf6e | 2001-10-14 16:25:47 +0000 | [diff] [blame] | 9 | #include "wine/port.h" |
| 10 | |
Alexandre Julliard | 808cb04 | 1995-08-17 17:11:36 +0000 | [diff] [blame] | 11 | #include <sys/types.h> |
Alexandre Julliard | 121bd98 | 1993-07-08 17:37:25 +0000 | [diff] [blame] | 12 | #include <stdlib.h> |
Marcus Meissner | 6189c19 | 2000-03-04 19:19:15 +0000 | [diff] [blame] | 13 | #include <time.h> |
Alexandre Julliard | 383da68 | 2000-02-10 22:15:21 +0000 | [diff] [blame] | 14 | #include <stdio.h> |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 15 | #include <unistd.h> |
Alexandre Julliard | 8d24ae6 | 1994-04-05 21:42:43 +0000 | [diff] [blame] | 16 | #include <string.h> |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 17 | |
Marcus Meissner | 04c3e1d | 1999-02-19 10:37:02 +0000 | [diff] [blame] | 18 | #include "wine/winbase16.h" |
Lawson Whitney | 969515d | 2000-10-02 22:27:37 +0000 | [diff] [blame] | 19 | #include "wine/exception.h" |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 20 | #include "global.h" |
Alexandre Julliard | 3f2abfa | 1994-08-16 15:43:11 +0000 | [diff] [blame] | 21 | #include "toolhelp.h" |
Alexandre Julliard | 234bc24 | 1994-12-10 13:02:28 +0000 | [diff] [blame] | 22 | #include "selectors.h" |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 23 | #include "miscemu.h" |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 24 | #include "stackframe.h" |
Alexandre Julliard | 77b9918 | 1997-09-14 17:17:23 +0000 | [diff] [blame] | 25 | #include "module.h" |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 26 | #include "debugtools.h" |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 27 | #include "winerror.h" |
Alexandre Julliard | aca0578 | 1994-10-17 18:12:41 +0000 | [diff] [blame] | 28 | |
Alexandre Julliard | 383da68 | 2000-02-10 22:15:21 +0000 | [diff] [blame] | 29 | DEFAULT_DEBUG_CHANNEL(global); |
Patrik Stridvall | b4b9fae | 1999-04-19 14:56:29 +0000 | [diff] [blame] | 30 | |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 31 | /* Global arena block */ |
| 32 | typedef struct |
| 33 | { |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 34 | 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 Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 42 | } GLOBALARENA; |
| 43 | |
| 44 | /* Flags definitions */ |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 45 | #define GA_MOVEABLE 0x02 /* same as GMEM_MOVEABLE */ |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 46 | #define GA_DGROUP 0x04 |
| 47 | #define GA_DISCARDABLE 0x08 |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 48 | #define GA_IPCSHARE 0x10 /* same as GMEM_DDESHARE */ |
Andreas Mohr | d23f506 | 2000-10-02 22:16:21 +0000 | [diff] [blame] | 49 | #define GA_DOSMEM 0x20 |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 50 | |
| 51 | /* Arena array */ |
| 52 | static GLOBALARENA *pGlobalArena = NULL; |
| 53 | static int globalArenaSize = 0; |
| 54 | |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 55 | #define GLOBAL_MAX_ALLOC_SIZE 0x00ff0000 /* Largest allocation is 16M - 64K */ |
Alexandre Julliard | 121bd98 | 1993-07-08 17:37:25 +0000 | [diff] [blame] | 56 | |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 57 | #define VALID_HANDLE(handle) (((handle)>>__AHSHIFT)<globalArenaSize) |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 58 | #define GET_ARENA_PTR(handle) (pGlobalArena + ((handle) >> __AHSHIFT)) |
Alexandre Julliard | 75a839a | 1993-07-15 11:13:45 +0000 | [diff] [blame] | 59 | |
Lawson Whitney | 969515d | 2000-10-02 22:27:37 +0000 | [diff] [blame] | 60 | /* 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 | |
| 64 | static 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 Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 75 | /*********************************************************************** |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 76 | * GLOBAL_GetArena |
| 77 | * |
| 78 | * Return the arena for a given selector, growing the arena array if needed. |
Alexandre Julliard | dba420a | 1994-02-02 06:48:31 +0000 | [diff] [blame] | 79 | */ |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 80 | static GLOBALARENA *GLOBAL_GetArena( WORD sel, WORD selcount ) |
Alexandre Julliard | dba420a | 1994-02-02 06:48:31 +0000 | [diff] [blame] | 81 | { |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 82 | if (((sel >> __AHSHIFT) + selcount) > globalArenaSize) |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 83 | { |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 84 | int newsize = ((sel >> __AHSHIFT) + selcount + 0xff) & ~0xff; |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 85 | GLOBALARENA *pNewArena = realloc( pGlobalArena, |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 86 | newsize * sizeof(GLOBALARENA) ); |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 87 | if (!pNewArena) return 0; |
| 88 | pGlobalArena = pNewArena; |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 89 | memset( pGlobalArena + globalArenaSize, 0, |
| 90 | (newsize - globalArenaSize) * sizeof(GLOBALARENA) ); |
| 91 | globalArenaSize = newsize; |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 92 | } |
| 93 | return pGlobalArena + (sel >> __AHSHIFT); |
| 94 | } |
Alexandre Julliard | dba420a | 1994-02-02 06:48:31 +0000 | [diff] [blame] | 95 | |
Juergen Schmied | ebc2b77 | 1998-11-14 18:59:30 +0000 | [diff] [blame] | 96 | void debug_handles(void) |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 97 | { |
| 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 Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 103 | DPRINTF("0x%08x, ",pGlobalArena[i].handle); |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 104 | } |
| 105 | } |
| 106 | if (printed) |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 107 | DPRINTF("\n"); |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 108 | } |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 109 | |
| 110 | |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 111 | /*********************************************************************** |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 112 | * GLOBAL_CreateBlock |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 113 | * |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 114 | * Create a global heap block for a fixed range of linear memory. |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 115 | */ |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 116 | HGLOBAL16 GLOBAL_CreateBlock( WORD flags, const void *ptr, DWORD size, |
Alexandre Julliard | 914406f | 2000-11-14 01:54:49 +0000 | [diff] [blame] | 117 | HGLOBAL16 hOwner, unsigned char selflags ) |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 118 | { |
| 119 | WORD sel, selcount; |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 120 | GLOBALARENA *pArena; |
Alexandre Julliard | dba420a | 1994-02-02 06:48:31 +0000 | [diff] [blame] | 121 | |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 122 | /* Allocate the selector(s) */ |
| 123 | |
Alexandre Julliard | 914406f | 2000-11-14 01:54:49 +0000 | [diff] [blame] | 124 | sel = SELECTOR_AllocBlock( ptr, size, selflags ); |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 125 | if (!sel) return 0; |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 126 | selcount = (size + 0xffff) / 0x10000; |
| 127 | |
| 128 | if (!(pArena = GLOBAL_GetArena( sel, selcount ))) |
| 129 | { |
Alexandre Julliard | 914406f | 2000-11-14 01:54:49 +0000 | [diff] [blame] | 130 | SELECTOR_FreeBlock( sel ); |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 131 | return 0; |
| 132 | } |
| 133 | |
| 134 | /* Fill the arena block */ |
| 135 | |
| 136 | pArena->base = (DWORD)ptr; |
Alexandre Julliard | 8c540c6 | 2000-11-13 04:16:05 +0000 | [diff] [blame] | 137 | pArena->size = GetSelectorLimit16(sel) + 1; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 138 | pArena->handle = (flags & GMEM_MOVEABLE) ? sel - 1 : sel; |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 139 | pArena->hOwner = hOwner; |
| 140 | pArena->lockCount = 0; |
| 141 | pArena->pageLockCount = 0; |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 142 | pArena->flags = flags & GA_MOVEABLE; |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 143 | if (flags & GMEM_DISCARDABLE) pArena->flags |= GA_DISCARDABLE; |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 144 | if (flags & GMEM_DDESHARE) pArena->flags |= GA_IPCSHARE; |
Alexandre Julliard | 914406f | 2000-11-14 01:54:49 +0000 | [diff] [blame] | 145 | if (!(selflags & (WINE_LDT_FLAGS_CODE^WINE_LDT_FLAGS_DATA))) pArena->flags |= GA_DGROUP; |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 146 | pArena->selCount = selcount; |
| 147 | if (selcount > 1) /* clear the next arena blocks */ |
| 148 | memset( pArena + 1, 0, (selcount - 1) * sizeof(GLOBALARENA) ); |
Alexandre Julliard | dba420a | 1994-02-02 06:48:31 +0000 | [diff] [blame] | 149 | |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 150 | return pArena->handle; |
| 151 | } |
Alexandre Julliard | 121bd98 | 1993-07-08 17:37:25 +0000 | [diff] [blame] | 152 | |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 153 | |
| 154 | /*********************************************************************** |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 155 | * GLOBAL_FreeBlock |
| 156 | * |
| 157 | * Free a block allocated by GLOBAL_CreateBlock, without touching |
| 158 | * the associated linear memory range. |
| 159 | */ |
Alexandre Julliard | d90840e | 1996-06-11 16:02:08 +0000 | [diff] [blame] | 160 | BOOL16 GLOBAL_FreeBlock( HGLOBAL16 handle ) |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 161 | { |
| 162 | WORD sel; |
Alexandre Julliard | 8cc3a5e | 1996-08-11 15:49:51 +0000 | [diff] [blame] | 163 | GLOBALARENA *pArena; |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 164 | |
| 165 | if (!handle) return TRUE; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 166 | sel = GlobalHandleToSel16( handle ); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 167 | if (!VALID_HANDLE(sel)) |
| 168 | return FALSE; |
Alexandre Julliard | 8cc3a5e | 1996-08-11 15:49:51 +0000 | [diff] [blame] | 169 | pArena = GET_ARENA_PTR(sel); |
Alexandre Julliard | 914406f | 2000-11-14 01:54:49 +0000 | [diff] [blame] | 170 | SELECTOR_FreeBlock( sel ); |
Alexandre Julliard | 8cc3a5e | 1996-08-11 15:49:51 +0000 | [diff] [blame] | 171 | memset( pArena, 0, sizeof(GLOBALARENA) ); |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 172 | return TRUE; |
| 173 | } |
| 174 | |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 175 | /*********************************************************************** |
| 176 | * GLOBAL_MoveBlock |
| 177 | */ |
| 178 | BOOL16 GLOBAL_MoveBlock( HGLOBAL16 handle, const void *ptr, DWORD size ) |
| 179 | { |
| 180 | WORD sel; |
| 181 | GLOBALARENA *pArena; |
| 182 | |
| 183 | if (!handle) return TRUE; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 184 | sel = GlobalHandleToSel16( handle ); |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 185 | 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 Julliard | 914406f | 2000-11-14 01:54:49 +0000 | [diff] [blame] | 193 | SELECTOR_ReallocBlock( sel, ptr, size ); |
Alexandre Julliard | d30dfd2 | 1998-09-27 18:28:36 +0000 | [diff] [blame] | 194 | return TRUE; |
| 195 | } |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 196 | |
| 197 | /*********************************************************************** |
| 198 | * GLOBAL_Alloc |
| 199 | * |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 200 | * Implementation of GlobalAlloc16() |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 201 | */ |
Alexandre Julliard | 914406f | 2000-11-14 01:54:49 +0000 | [diff] [blame] | 202 | HGLOBAL16 GLOBAL_Alloc( UINT16 flags, DWORD size, HGLOBAL16 hOwner, unsigned char selflags ) |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 203 | { |
| 204 | void *ptr; |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 205 | HGLOBAL16 handle; |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 206 | |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 207 | TRACE("%ld flags=%04x\n", size, flags ); |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 208 | |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 209 | /* If size is 0, create a discarded block */ |
| 210 | |
Alexandre Julliard | 914406f | 2000-11-14 01:54:49 +0000 | [diff] [blame] | 211 | if (size == 0) return GLOBAL_CreateBlock( flags, NULL, 1, hOwner, selflags ); |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 212 | |
| 213 | /* Fixup the size */ |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 214 | |
Alexandre Julliard | a2f2e01 | 1995-06-06 16:40:35 +0000 | [diff] [blame] | 215 | if (size >= GLOBAL_MAX_ALLOC_SIZE - 0x1f) return 0; |
Alexandre Julliard | 7e56f68 | 1996-01-31 19:02:28 +0000 | [diff] [blame] | 216 | size = (size + 0x1f) & ~0x1f; |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 217 | |
Marcus Meissner | e32a317 | 1999-07-11 14:13:56 +0000 | [diff] [blame] | 218 | /* Allocate the linear memory */ |
Alexandre Julliard | 079fd72 | 2000-01-25 01:41:35 +0000 | [diff] [blame] | 219 | ptr = HeapAlloc( GetProcessHeap(), 0, size ); |
Alexandre Julliard | 77b9918 | 1997-09-14 17:17:23 +0000 | [diff] [blame] | 220 | /* FIXME: free discardable blocks and try again? */ |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 221 | if (!ptr) return 0; |
| 222 | |
| 223 | /* Allocate the selector(s) */ |
| 224 | |
Alexandre Julliard | 914406f | 2000-11-14 01:54:49 +0000 | [diff] [blame] | 225 | handle = GLOBAL_CreateBlock( flags, ptr, size, hOwner, selflags ); |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 226 | if (!handle) |
| 227 | { |
Alexandre Julliard | 079fd72 | 2000-01-25 01:41:35 +0000 | [diff] [blame] | 228 | HeapFree( GetProcessHeap(), 0, ptr ); |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 229 | return 0; |
| 230 | } |
| 231 | |
| 232 | if (flags & GMEM_ZEROINIT) memset( ptr, 0, size ); |
| 233 | return handle; |
| 234 | } |
| 235 | |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 236 | /*********************************************************************** |
Patrik Stridvall | 044855c | 2001-07-11 18:56:41 +0000 | [diff] [blame] | 237 | * GlobalAlloc (KERNEL.15) |
| 238 | * GlobalAlloc16 (KERNEL32.24) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 239 | * RETURNS |
| 240 | * Handle: Success |
| 241 | * NULL: Failure |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 242 | */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 243 | HGLOBAL16 WINAPI GlobalAlloc16( |
| 244 | UINT16 flags, /* [in] Object allocation attributes */ |
| 245 | DWORD size /* [in] Number of bytes to allocate */ |
| 246 | ) { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 247 | HANDLE16 owner = GetCurrentPDB16(); |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 248 | |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 249 | if (flags & GMEM_DDESHARE) |
Alexandre Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 250 | owner = GetExePtr(owner); /* Make it a module handle */ |
Alexandre Julliard | 914406f | 2000-11-14 01:54:49 +0000 | [diff] [blame] | 251 | return GLOBAL_Alloc( flags, size, owner, WINE_LDT_FLAGS_DATA ); |
Alexandre Julliard | 121bd98 | 1993-07-08 17:37:25 +0000 | [diff] [blame] | 252 | } |
Alexandre Julliard | 7cbe657 | 1995-01-09 18:21:16 +0000 | [diff] [blame] | 253 | |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 254 | |
| 255 | /*********************************************************************** |
Patrik Stridvall | 044855c | 2001-07-11 18:56:41 +0000 | [diff] [blame] | 256 | * GlobalReAlloc (KERNEL.16) |
| 257 | * GlobalReAlloc16 (KERNEL32.@) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 258 | * RETURNS |
| 259 | * Handle: Success |
| 260 | * NULL: Failure |
Alexandre Julliard | 7cbe657 | 1995-01-09 18:21:16 +0000 | [diff] [blame] | 261 | */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 262 | HGLOBAL16 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 Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 267 | WORD selcount; |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 268 | DWORD oldsize; |
| 269 | void *ptr; |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 270 | GLOBALARENA *pArena, *pNewArena; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 271 | WORD sel = GlobalHandleToSel16( handle ); |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 272 | |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 273 | TRACE("%04x %ld flags=%04x\n", |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 274 | handle, size, flags ); |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 275 | if (!handle) return 0; |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 276 | |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 277 | if (!VALID_HANDLE(handle)) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 278 | WARN("Invalid handle 0x%04x!\n", handle); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 279 | return 0; |
| 280 | } |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 281 | pArena = GET_ARENA_PTR( handle ); |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 282 | |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 283 | /* Discard the block if requested */ |
| 284 | |
Alexandre Julliard | ded3038 | 1995-07-06 17:18:27 +0000 | [diff] [blame] | 285 | if ((size == 0) && (flags & GMEM_MOVEABLE) && !(flags & GMEM_MODIFY)) |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 286 | { |
| 287 | if (!(pArena->flags & GA_MOVEABLE) || |
| 288 | !(pArena->flags & GA_DISCARDABLE) || |
| 289 | (pArena->lockCount > 0) || (pArena->pageLockCount > 0)) return 0; |
Alexandre Julliard | 079fd72 | 2000-01-25 01:41:35 +0000 | [diff] [blame] | 290 | HeapFree( GetProcessHeap(), 0, (void *)pArena->base ); |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 291 | pArena->base = 0; |
Alexandre Julliard | 77b9918 | 1997-09-14 17:17:23 +0000 | [diff] [blame] | 292 | |
| 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 Julliard | 284c9b9 | 1999-04-11 15:07:13 +0000 | [diff] [blame] | 297 | SELECTOR_ReallocBlock( sel, 0, 1 ); |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 298 | return handle; |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 299 | } |
| 300 | |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 301 | /* Fixup the size */ |
| 302 | |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 303 | if (size > GLOBAL_MAX_ALLOC_SIZE - 0x20) return 0; |
| 304 | if (size == 0) size = 0x20; |
| 305 | else size = (size + 0x1f) & ~0x1f; |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 306 | |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 307 | /* Change the flags */ |
| 308 | |
| 309 | if (flags & GMEM_MODIFY) |
| 310 | { |
| 311 | /* Change the flags, leaving GA_DGROUP alone */ |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 312 | pArena->flags = (pArena->flags & GA_DGROUP) | (flags & GA_MOVEABLE); |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 313 | if (flags & GMEM_DISCARDABLE) pArena->flags |= GA_DISCARDABLE; |
| 314 | return handle; |
| 315 | } |
| 316 | |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 317 | /* Reallocate the linear memory */ |
| 318 | |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 319 | ptr = (void *)pArena->base; |
| 320 | oldsize = pArena->size; |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 321 | TRACE("oldsize %08lx\n",oldsize); |
Alexandre Julliard | 7d654eb | 1996-02-25 11:36:22 +0000 | [diff] [blame] | 322 | if (ptr && (size == oldsize)) return handle; /* Nothing to do */ |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 323 | |
Andreas Mohr | d23f506 | 2000-10-02 22:16:21 +0000 | [diff] [blame] | 324 | if (pArena->flags & GA_DOSMEM) |
Ove Kaaven | 7b49914 | 2000-07-28 22:23:59 +0000 | [diff] [blame] | 325 | ptr = DOSMEM_ResizeBlock(ptr, size, NULL); |
Bertho Stultiens | c1d1cfe | 1999-04-18 12:14:06 +0000 | [diff] [blame] | 326 | else |
Alexandre Julliard | 079fd72 | 2000-01-25 01:41:35 +0000 | [diff] [blame] | 327 | ptr = HeapReAlloc( GetProcessHeap(), 0, ptr, size ); |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 328 | if (!ptr) |
| 329 | { |
Alexandre Julliard | 914406f | 2000-11-14 01:54:49 +0000 | [diff] [blame] | 330 | SELECTOR_FreeBlock( sel ); |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 331 | memset( pArena, 0, sizeof(GLOBALARENA) ); |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 332 | return 0; |
| 333 | } |
| 334 | |
| 335 | /* Reallocate the selector(s) */ |
| 336 | |
Alexandre Julliard | 284c9b9 | 1999-04-11 15:07:13 +0000 | [diff] [blame] | 337 | sel = SELECTOR_ReallocBlock( sel, ptr, size ); |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 338 | if (!sel) |
| 339 | { |
Alexandre Julliard | 079fd72 | 2000-01-25 01:41:35 +0000 | [diff] [blame] | 340 | HeapFree( GetProcessHeap(), 0, ptr ); |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 341 | memset( pArena, 0, sizeof(GLOBALARENA) ); |
| 342 | return 0; |
| 343 | } |
| 344 | selcount = (size + 0xffff) / 0x10000; |
| 345 | |
| 346 | if (!(pNewArena = GLOBAL_GetArena( sel, selcount ))) |
| 347 | { |
Alexandre Julliard | 079fd72 | 2000-01-25 01:41:35 +0000 | [diff] [blame] | 348 | HeapFree( GetProcessHeap(), 0, ptr ); |
Alexandre Julliard | 914406f | 2000-11-14 01:54:49 +0000 | [diff] [blame] | 349 | SELECTOR_FreeBlock( sel ); |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 350 | return 0; |
| 351 | } |
| 352 | |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 353 | /* Fill the new arena block */ |
| 354 | |
| 355 | if (pNewArena != pArena) memcpy( pNewArena, pArena, sizeof(GLOBALARENA) ); |
| 356 | pNewArena->base = (DWORD)ptr; |
Alexandre Julliard | 8c540c6 | 2000-11-13 04:16:05 +0000 | [diff] [blame] | 357 | pNewArena->size = GetSelectorLimit16(sel) + 1; |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 358 | pNewArena->selCount = selcount; |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 359 | pNewArena->handle = (pNewArena->flags & GA_MOVEABLE) ? sel - 1 : sel; |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 360 | |
| 361 | if (selcount > 1) /* clear the next arena blocks */ |
| 362 | memset( pNewArena + 1, 0, (selcount - 1) * sizeof(GLOBALARENA) ); |
| 363 | |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 364 | if ((oldsize < size) && (flags & GMEM_ZEROINIT)) |
| 365 | memset( (char *)ptr + oldsize, 0, size - oldsize ); |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 366 | return pNewArena->handle; |
Alexandre Julliard | 7cbe657 | 1995-01-09 18:21:16 +0000 | [diff] [blame] | 367 | } |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 368 | |
| 369 | |
| 370 | /*********************************************************************** |
Patrik Stridvall | 044855c | 2001-07-11 18:56:41 +0000 | [diff] [blame] | 371 | * GlobalFree (KERNEL.17) |
| 372 | * GlobalFree16 (KERNEL32.31) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 373 | * RETURNS |
| 374 | * NULL: Success |
| 375 | * Handle: Failure |
Alexandre Julliard | 121bd98 | 1993-07-08 17:37:25 +0000 | [diff] [blame] | 376 | */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 377 | HGLOBAL16 WINAPI GlobalFree16( |
| 378 | HGLOBAL16 handle /* [in] Handle of global memory object */ |
| 379 | ) { |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 380 | void *ptr; |
Alexandre Julliard | 121bd98 | 1993-07-08 17:37:25 +0000 | [diff] [blame] | 381 | |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 382 | if (!VALID_HANDLE(handle)) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 383 | WARN("Invalid handle 0x%04x passed to GlobalFree16!\n",handle); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 384 | return 0; |
| 385 | } |
| 386 | ptr = (void *)GET_ARENA_PTR(handle)->base; |
| 387 | |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 388 | TRACE("%04x\n", handle ); |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 389 | if (!GLOBAL_FreeBlock( handle )) return handle; /* failed */ |
Alexandre Julliard | 079fd72 | 2000-01-25 01:41:35 +0000 | [diff] [blame] | 390 | if (ptr) HeapFree( GetProcessHeap(), 0, ptr ); |
Alexandre Julliard | 121bd98 | 1993-07-08 17:37:25 +0000 | [diff] [blame] | 391 | return 0; |
| 392 | } |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 393 | |
| 394 | |
| 395 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 396 | * GlobalLock (KERNEL.18) |
Alexandre Julliard | 121bd98 | 1993-07-08 17:37:25 +0000 | [diff] [blame] | 397 | * |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 398 | * This is the GlobalLock16() function used by 16-bit code. |
Alexandre Julliard | 121bd98 | 1993-07-08 17:37:25 +0000 | [diff] [blame] | 399 | */ |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 400 | SEGPTR WINAPI WIN16_GlobalLock16( HGLOBAL16 handle ) |
Alexandre Julliard | 121bd98 | 1993-07-08 17:37:25 +0000 | [diff] [blame] | 401 | { |
Ulrich Weigand | b2682d4 | 1999-07-27 16:10:24 +0000 | [diff] [blame] | 402 | WORD sel = GlobalHandleToSel16( handle ); |
| 403 | TRACE("(%04x) -> %08lx\n", handle, MAKELONG( 0, sel ) ); |
| 404 | |
Alexandre Julliard | 77b9918 | 1997-09-14 17:17:23 +0000 | [diff] [blame] | 405 | if (handle) |
| 406 | { |
| 407 | if (handle == (HGLOBAL16)-1) handle = CURRENT_DS; |
Alexandre Julliard | e2991ea | 1995-07-29 13:09:43 +0000 | [diff] [blame] | 408 | |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 409 | if (!VALID_HANDLE(handle)) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 410 | WARN("Invalid handle 0x%04x passed to WIN16_GlobalLock16!\n",handle); |
Ulrich Weigand | b2682d4 | 1999-07-27 16:10:24 +0000 | [diff] [blame] | 411 | sel = 0; |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 412 | } |
Ulrich Weigand | 81a8057 | 1999-07-28 16:36:29 +0000 | [diff] [blame] | 413 | else if (!GET_ARENA_PTR(handle)->base) |
Ulrich Weigand | b2682d4 | 1999-07-27 16:10:24 +0000 | [diff] [blame] | 414 | sel = 0; |
| 415 | else |
| 416 | GET_ARENA_PTR(handle)->lockCount++; |
Alexandre Julliard | 77b9918 | 1997-09-14 17:17:23 +0000 | [diff] [blame] | 417 | } |
Ulrich Weigand | b2682d4 | 1999-07-27 16:10:24 +0000 | [diff] [blame] | 418 | |
| 419 | CURRENT_STACK16->ecx = sel; /* selector must be returned in CX as well */ |
Alexandre Julliard | 982a223 | 2000-12-13 20:20:09 +0000 | [diff] [blame] | 420 | return MAKESEGPTR( sel, 0 ); |
Alexandre Julliard | 121bd98 | 1993-07-08 17:37:25 +0000 | [diff] [blame] | 421 | } |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 422 | |
| 423 | |
Alexandre Julliard | 5801723 | 2000-12-22 01:09:26 +0000 | [diff] [blame] | 424 | /********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 425 | * K32WOWGlobalLock16 (KERNEL32.60) |
Alexandre Julliard | 5801723 | 2000-12-22 01:09:26 +0000 | [diff] [blame] | 426 | */ |
| 427 | SEGPTR WINAPI K32WOWGlobalLock16( HGLOBAL16 hMem ) |
| 428 | { |
| 429 | return WIN16_GlobalLock16( hMem ); |
| 430 | } |
| 431 | |
| 432 | |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 433 | /*********************************************************************** |
Patrik Stridvall | 044855c | 2001-07-11 18:56:41 +0000 | [diff] [blame] | 434 | * GlobalLock16 (KERNEL32.25) |
Alexandre Julliard | 75a839a | 1993-07-15 11:13:45 +0000 | [diff] [blame] | 435 | * |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 436 | * This is the GlobalLock16() function used by 32-bit code. |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 437 | * |
| 438 | * RETURNS |
| 439 | * Pointer to first byte of memory block |
| 440 | * NULL: Failure |
Alexandre Julliard | 75a839a | 1993-07-15 11:13:45 +0000 | [diff] [blame] | 441 | */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 442 | LPVOID WINAPI GlobalLock16( |
| 443 | HGLOBAL16 handle /* [in] Handle of global memory object */ |
| 444 | ) { |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 445 | if (!handle) return 0; |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 446 | if (!VALID_HANDLE(handle)) |
| 447 | return (LPVOID)0; |
Alexandre Julliard | 3db94ef | 1997-09-28 17:43:24 +0000 | [diff] [blame] | 448 | GET_ARENA_PTR(handle)->lockCount++; |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 449 | return (LPVOID)GET_ARENA_PTR(handle)->base; |
Alexandre Julliard | 75a839a | 1993-07-15 11:13:45 +0000 | [diff] [blame] | 450 | } |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 451 | |
| 452 | |
| 453 | /*********************************************************************** |
Patrik Stridvall | 044855c | 2001-07-11 18:56:41 +0000 | [diff] [blame] | 454 | * GlobalUnlock (KERNEL.19) |
| 455 | * GlobalUnlock16 (KERNEL32.26) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 456 | * 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 Julliard | 75a839a | 1993-07-15 11:13:45 +0000 | [diff] [blame] | 462 | */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 463 | BOOL16 WINAPI GlobalUnlock16( |
| 464 | HGLOBAL16 handle /* [in] Handle of global memory object */ |
| 465 | ) { |
Alexandre Julliard | 3db94ef | 1997-09-28 17:43:24 +0000 | [diff] [blame] | 466 | GLOBALARENA *pArena = GET_ARENA_PTR(handle); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 467 | if (!VALID_HANDLE(handle)) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 468 | WARN("Invalid handle 0x%04x passed to GlobalUnlock16!\n",handle); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 469 | return 0; |
| 470 | } |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 471 | TRACE("%04x\n", handle ); |
Alexandre Julliard | 3db94ef | 1997-09-28 17:43:24 +0000 | [diff] [blame] | 472 | if (pArena->lockCount) pArena->lockCount--; |
| 473 | return pArena->lockCount; |
Alexandre Julliard | 75a839a | 1993-07-15 11:13:45 +0000 | [diff] [blame] | 474 | } |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 475 | |
Ulrich Weigand | 23e9b04 | 1998-12-01 15:19:54 +0000 | [diff] [blame] | 476 | /*********************************************************************** |
| 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 Weigand | b5151d0 | 1999-07-25 11:27:36 +0000 | [diff] [blame] | 483 | void WINAPI GlobalChangeLockCount16( HGLOBAL16 handle, INT16 delta, |
| 484 | CONTEXT86 *context ) |
Ulrich Weigand | 23e9b04 | 1998-12-01 15:19:54 +0000 | [diff] [blame] | 485 | { |
Ulrich Weigand | 23e9b04 | 1998-12-01 15:19:54 +0000 | [diff] [blame] | 486 | if ( delta == 1 ) |
| 487 | GlobalLock16( handle ); |
| 488 | else if ( delta == -1 ) |
| 489 | GlobalUnlock16( handle ); |
| 490 | else |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 491 | ERR("(%04X, %d): strange delta value\n", handle, delta ); |
Ulrich Weigand | 23e9b04 | 1998-12-01 15:19:54 +0000 | [diff] [blame] | 492 | } |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 493 | |
| 494 | /*********************************************************************** |
Patrik Stridvall | 044855c | 2001-07-11 18:56:41 +0000 | [diff] [blame] | 495 | * GlobalSize (KERNEL.20) |
| 496 | * GlobalSize16 (KERNEL32.32) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 497 | * RETURNS |
| 498 | * Size in bytes of object |
| 499 | * 0: Failure |
Alexandre Julliard | 75a839a | 1993-07-15 11:13:45 +0000 | [diff] [blame] | 500 | */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 501 | DWORD WINAPI GlobalSize16( |
| 502 | HGLOBAL16 handle /* [in] Handle of global memory object */ |
| 503 | ) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 504 | TRACE("%04x\n", handle ); |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 505 | if (!handle) return 0; |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 506 | if (!VALID_HANDLE(handle)) |
| 507 | return 0; |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 508 | return GET_ARENA_PTR(handle)->size; |
Alexandre Julliard | 75a839a | 1993-07-15 11:13:45 +0000 | [diff] [blame] | 509 | } |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 510 | |
| 511 | |
| 512 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 513 | * GlobalHandle (KERNEL.21) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 514 | * NOTES |
| 515 | * Why is GlobalHandleToSel used here with the sel as input? |
| 516 | * |
| 517 | * RETURNS |
| 518 | * Handle: Success |
| 519 | * NULL: Failure |
Alexandre Julliard | 75a839a | 1993-07-15 11:13:45 +0000 | [diff] [blame] | 520 | */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 521 | DWORD WINAPI GlobalHandle16( |
| 522 | WORD sel /* [in] Address of global memory block */ |
| 523 | ) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 524 | TRACE("%04x\n", sel ); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 525 | if (!VALID_HANDLE(sel)) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 526 | WARN("Invalid handle 0x%04x passed to GlobalHandle16!\n",sel); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 527 | return 0; |
| 528 | } |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 529 | return MAKELONG( GET_ARENA_PTR(sel)->handle, GlobalHandleToSel16(sel) ); |
Alexandre Julliard | 75a839a | 1993-07-15 11:13:45 +0000 | [diff] [blame] | 530 | } |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 531 | |
Alexandre Julliard | 60ce85c | 1998-02-01 18:33:27 +0000 | [diff] [blame] | 532 | /*********************************************************************** |
| 533 | * GlobalHandleNoRIP (KERNEL.159) |
| 534 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 535 | DWORD WINAPI GlobalHandleNoRIP16( WORD sel ) |
Alexandre Julliard | 60ce85c | 1998-02-01 18:33:27 +0000 | [diff] [blame] | 536 | { |
| 537 | int i; |
| 538 | for (i = globalArenaSize-1 ; i>=0 ; i--) { |
| 539 | if (pGlobalArena[i].size!=0 && pGlobalArena[i].handle == sel) |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 540 | return MAKELONG( GET_ARENA_PTR(sel)->handle, GlobalHandleToSel16(sel) ); |
Alexandre Julliard | 60ce85c | 1998-02-01 18:33:27 +0000 | [diff] [blame] | 541 | } |
| 542 | return 0; |
| 543 | } |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 544 | |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 545 | |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 546 | /*********************************************************************** |
Patrik Stridvall | 044855c | 2001-07-11 18:56:41 +0000 | [diff] [blame] | 547 | * GlobalFlags (KERNEL.22) |
| 548 | * GlobalFlags16 (KERNEL32.@) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 549 | * 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 Julliard | 75a839a | 1993-07-15 11:13:45 +0000 | [diff] [blame] | 556 | */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 557 | UINT16 WINAPI GlobalFlags16( |
| 558 | HGLOBAL16 handle /* [in] Handle of global memory object */ |
| 559 | ) { |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 560 | GLOBALARENA *pArena; |
| 561 | |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 562 | TRACE("%04x\n", handle ); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 563 | if (!VALID_HANDLE(handle)) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 564 | WARN("Invalid handle 0x%04x passed to GlobalFlags16!\n",handle); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 565 | return 0; |
| 566 | } |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 567 | pArena = GET_ARENA_PTR(handle); |
| 568 | return pArena->lockCount | |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 569 | ((pArena->flags & GA_DISCARDABLE) ? GMEM_DISCARDABLE : 0) | |
| 570 | ((pArena->base == 0) ? GMEM_DISCARDED : 0); |
Alexandre Julliard | 75a839a | 1993-07-15 11:13:45 +0000 | [diff] [blame] | 571 | } |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 572 | |
| 573 | |
| 574 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 575 | * LockSegment (KERNEL.23) |
Alexandre Julliard | 75a839a | 1993-07-15 11:13:45 +0000 | [diff] [blame] | 576 | */ |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 577 | HGLOBAL16 WINAPI LockSegment16( HGLOBAL16 handle ) |
Alexandre Julliard | 75a839a | 1993-07-15 11:13:45 +0000 | [diff] [blame] | 578 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 579 | TRACE("%04x\n", handle ); |
Alexandre Julliard | 3051b64 | 1996-07-05 17:14:13 +0000 | [diff] [blame] | 580 | if (handle == (HGLOBAL16)-1) handle = CURRENT_DS; |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 581 | if (!VALID_HANDLE(handle)) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 582 | WARN("Invalid handle 0x%04x passed to LockSegment16!\n",handle); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 583 | return 0; |
| 584 | } |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 585 | GET_ARENA_PTR(handle)->lockCount++; |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 586 | return handle; |
Alexandre Julliard | 75a839a | 1993-07-15 11:13:45 +0000 | [diff] [blame] | 587 | } |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 588 | |
| 589 | |
| 590 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 591 | * UnlockSegment (KERNEL.24) |
Alexandre Julliard | 401710d | 1993-09-04 10:09:32 +0000 | [diff] [blame] | 592 | */ |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 593 | void WINAPI UnlockSegment16( HGLOBAL16 handle ) |
Alexandre Julliard | 401710d | 1993-09-04 10:09:32 +0000 | [diff] [blame] | 594 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 595 | TRACE("%04x\n", handle ); |
Alexandre Julliard | 3051b64 | 1996-07-05 17:14:13 +0000 | [diff] [blame] | 596 | if (handle == (HGLOBAL16)-1) handle = CURRENT_DS; |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 597 | if (!VALID_HANDLE(handle)) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 598 | WARN("Invalid handle 0x%04x passed to UnlockSegment16!\n",handle); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 599 | return; |
| 600 | } |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 601 | GET_ARENA_PTR(handle)->lockCount--; |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 602 | /* FIXME: this ought to return the lock count in CX (go figure...) */ |
Alexandre Julliard | 401710d | 1993-09-04 10:09:32 +0000 | [diff] [blame] | 603 | } |
Alexandre Julliard | 401710d | 1993-09-04 10:09:32 +0000 | [diff] [blame] | 604 | |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 605 | |
| 606 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 607 | * GlobalCompact (KERNEL.25) |
Alexandre Julliard | 401710d | 1993-09-04 10:09:32 +0000 | [diff] [blame] | 608 | */ |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 609 | DWORD WINAPI GlobalCompact16( DWORD desired ) |
Alexandre Julliard | 401710d | 1993-09-04 10:09:32 +0000 | [diff] [blame] | 610 | { |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 611 | return GLOBAL_MAX_ALLOC_SIZE; |
Alexandre Julliard | 401710d | 1993-09-04 10:09:32 +0000 | [diff] [blame] | 612 | } |
| 613 | |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 614 | |
| 615 | /*********************************************************************** |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 616 | * GlobalFreeAll (KERNEL.26) |
| 617 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 618 | void WINAPI GlobalFreeAll16( HGLOBAL16 owner ) |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 619 | { |
| 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 Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 627 | GlobalFree16( pArena->handle ); |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 628 | } |
| 629 | } |
| 630 | |
| 631 | |
| 632 | /*********************************************************************** |
Patrik Stridvall | 044855c | 2001-07-11 18:56:41 +0000 | [diff] [blame] | 633 | * GlobalWire (KERNEL.111) |
| 634 | * GlobalWire16 (KERNEL32.29) |
Alexandre Julliard | 8d24ae6 | 1994-04-05 21:42:43 +0000 | [diff] [blame] | 635 | */ |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 636 | SEGPTR WINAPI GlobalWire16( HGLOBAL16 handle ) |
Alexandre Julliard | 8d24ae6 | 1994-04-05 21:42:43 +0000 | [diff] [blame] | 637 | { |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 638 | return WIN16_GlobalLock16( handle ); |
Alexandre Julliard | 8d24ae6 | 1994-04-05 21:42:43 +0000 | [diff] [blame] | 639 | } |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 640 | |
| 641 | |
| 642 | /*********************************************************************** |
Patrik Stridvall | 044855c | 2001-07-11 18:56:41 +0000 | [diff] [blame] | 643 | * GlobalUnWire (KERNEL.112) |
| 644 | * GlobalUnWire16 (KERNEL32.30) |
Alexandre Julliard | 3f2abfa | 1994-08-16 15:43:11 +0000 | [diff] [blame] | 645 | */ |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 646 | BOOL16 WINAPI GlobalUnWire16( HGLOBAL16 handle ) |
Alexandre Julliard | 3f2abfa | 1994-08-16 15:43:11 +0000 | [diff] [blame] | 647 | { |
Alexandre Julliard | 3db94ef | 1997-09-28 17:43:24 +0000 | [diff] [blame] | 648 | return !GlobalUnlock16( handle ); |
Alexandre Julliard | 3f2abfa | 1994-08-16 15:43:11 +0000 | [diff] [blame] | 649 | } |
Alexandre Julliard | aca0578 | 1994-10-17 18:12:41 +0000 | [diff] [blame] | 650 | |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 651 | |
| 652 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 653 | * SetSwapAreaSize (KERNEL.106) |
Alexandre Julliard | aca0578 | 1994-10-17 18:12:41 +0000 | [diff] [blame] | 654 | */ |
Alexandre Julliard | e658d82 | 1997-11-30 17:45:40 +0000 | [diff] [blame] | 655 | LONG WINAPI SetSwapAreaSize16( WORD size ) |
Alexandre Julliard | aca0578 | 1994-10-17 18:12:41 +0000 | [diff] [blame] | 656 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 657 | FIXME("(%d) - stub!\n", size ); |
Alexandre Julliard | aca0578 | 1994-10-17 18:12:41 +0000 | [diff] [blame] | 658 | return MAKELONG( size, 0xffff ); |
| 659 | } |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 660 | |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 661 | |
| 662 | /*********************************************************************** |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 663 | * GlobalLRUOldest (KERNEL.163) |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 664 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 665 | HGLOBAL16 WINAPI GlobalLRUOldest16( HGLOBAL16 handle ) |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 666 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 667 | TRACE("%04x\n", handle ); |
Alexandre Julliard | 3051b64 | 1996-07-05 17:14:13 +0000 | [diff] [blame] | 668 | if (handle == (HGLOBAL16)-1) handle = CURRENT_DS; |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 669 | return handle; |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 670 | } |
| 671 | |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 672 | |
| 673 | /*********************************************************************** |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 674 | * GlobalLRUNewest (KERNEL.164) |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 675 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 676 | HGLOBAL16 WINAPI GlobalLRUNewest16( HGLOBAL16 handle ) |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 677 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 678 | TRACE("%04x\n", handle ); |
Alexandre Julliard | 3051b64 | 1996-07-05 17:14:13 +0000 | [diff] [blame] | 679 | if (handle == (HGLOBAL16)-1) handle = CURRENT_DS; |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 680 | return handle; |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 681 | } |
| 682 | |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 683 | |
| 684 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 685 | * GetFreeSpace (KERNEL.169) |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 686 | */ |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 687 | DWORD WINAPI GetFreeSpace16( UINT16 wFlags ) |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 688 | { |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 689 | MEMORYSTATUS ms; |
Alexandre Julliard | b1bac32 | 1996-12-15 19:45:59 +0000 | [diff] [blame] | 690 | GlobalMemoryStatus( &ms ); |
| 691 | return ms.dwAvailVirtual; |
Alexandre Julliard | 3a405ba | 1994-10-30 16:25:19 +0000 | [diff] [blame] | 692 | } |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 693 | |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 694 | /*********************************************************************** |
| 695 | * GlobalDOSAlloc (KERNEL.184) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 696 | * RETURNS |
| 697 | * Address (HW=Paragraph segment; LW=Selector) |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 698 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 699 | DWORD WINAPI GlobalDOSAlloc16( |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 700 | DWORD size /* [in] Number of bytes to be allocated */ |
| 701 | ) { |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 702 | UINT16 uParagraph; |
Ove Kaaven | 7b49914 | 2000-07-28 22:23:59 +0000 | [diff] [blame] | 703 | LPVOID lpBlock = DOSMEM_GetBlock( size, &uParagraph ); |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 704 | |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 705 | if( lpBlock ) |
| 706 | { |
Alexandre Julliard | 2197901 | 1997-03-05 08:22:35 +0000 | [diff] [blame] | 707 | HMODULE16 hModule = GetModuleHandle16("KERNEL"); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 708 | WORD wSelector; |
Andreas Mohr | d23f506 | 2000-10-02 22:16:21 +0000 | [diff] [blame] | 709 | GLOBALARENA *pArena; |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 710 | |
Alexandre Julliard | 914406f | 2000-11-14 01:54:49 +0000 | [diff] [blame] | 711 | wSelector = GLOBAL_CreateBlock(GMEM_FIXED, lpBlock, size, hModule, WINE_LDT_FLAGS_DATA ); |
Andreas Mohr | d23f506 | 2000-10-02 22:16:21 +0000 | [diff] [blame] | 712 | pArena = GET_ARENA_PTR(wSelector); |
| 713 | pArena->flags |= GA_DOSMEM; |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 714 | return MAKELONG(wSelector,uParagraph); |
| 715 | } |
| 716 | return 0; |
| 717 | } |
| 718 | |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 719 | |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 720 | /*********************************************************************** |
| 721 | * GlobalDOSFree (KERNEL.185) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 722 | * RETURNS |
| 723 | * NULL: Success |
| 724 | * sel: Failure |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 725 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 726 | WORD WINAPI GlobalDOSFree16( |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 727 | WORD sel /* [in] Selector */ |
| 728 | ) { |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 729 | DWORD block = GetSelectorBase(sel); |
| 730 | |
| 731 | if( block && block < 0x100000 ) |
| 732 | { |
| 733 | LPVOID lpBlock = DOSMEM_MapDosToLinear( block ); |
Ove Kaaven | 7b49914 | 2000-07-28 22:23:59 +0000 | [diff] [blame] | 734 | if( DOSMEM_FreeBlock( lpBlock ) ) |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 735 | GLOBAL_FreeBlock( sel ); |
| 736 | sel = 0; |
| 737 | } |
| 738 | return sel; |
| 739 | } |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 740 | |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 741 | |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 742 | /*********************************************************************** |
Patrik Stridvall | 3ca9823 | 2001-06-20 23:03:14 +0000 | [diff] [blame] | 743 | * GlobalPageLock (KERNEL.191) |
Patrik Stridvall | 044855c | 2001-07-11 18:56:41 +0000 | [diff] [blame] | 744 | * GlobalSmartPageLock(KERNEL.230) |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 745 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 746 | WORD WINAPI GlobalPageLock16( HGLOBAL16 handle ) |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 747 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 748 | TRACE("%04x\n", handle ); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 749 | if (!VALID_HANDLE(handle)) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 750 | WARN("Invalid handle 0x%04x passed to GlobalPageLock!\n",handle); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 751 | return 0; |
| 752 | } |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 753 | return ++(GET_ARENA_PTR(handle)->pageLockCount); |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 754 | } |
| 755 | |
| 756 | |
| 757 | /*********************************************************************** |
Patrik Stridvall | 3ca9823 | 2001-06-20 23:03:14 +0000 | [diff] [blame] | 758 | * GlobalPageUnlock (KERNEL.192) |
Patrik Stridvall | 044855c | 2001-07-11 18:56:41 +0000 | [diff] [blame] | 759 | * GlobalSmartPageUnlock(KERNEL.231) |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 760 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 761 | WORD WINAPI GlobalPageUnlock16( HGLOBAL16 handle ) |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 762 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 763 | TRACE("%04x\n", handle ); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 764 | if (!VALID_HANDLE(handle)) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 765 | WARN("Invalid handle 0x%04x passed to GlobalPageUnlock!\n",handle); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 766 | return 0; |
| 767 | } |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 768 | return --(GET_ARENA_PTR(handle)->pageLockCount); |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 769 | } |
| 770 | |
| 771 | |
| 772 | /*********************************************************************** |
Patrik Stridvall | 044855c | 2001-07-11 18:56:41 +0000 | [diff] [blame] | 773 | * GlobalFix (KERNEL.197) |
| 774 | * GlobalFix16 (KERNEL32.27) |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 775 | */ |
Ulrich Weigand | 85a7ff4 | 1998-10-11 19:10:10 +0000 | [diff] [blame] | 776 | WORD WINAPI GlobalFix16( HGLOBAL16 handle ) |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 777 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 778 | TRACE("%04x\n", handle ); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 779 | if (!VALID_HANDLE(handle)) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 780 | WARN("Invalid handle 0x%04x passed to GlobalFix16!\n",handle); |
Ulrich Weigand | 85a7ff4 | 1998-10-11 19:10:10 +0000 | [diff] [blame] | 781 | return 0; |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 782 | } |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 783 | GET_ARENA_PTR(handle)->lockCount++; |
Ulrich Weigand | 85a7ff4 | 1998-10-11 19:10:10 +0000 | [diff] [blame] | 784 | |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 785 | return GlobalHandleToSel16(handle); |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | |
| 789 | /*********************************************************************** |
Patrik Stridvall | 044855c | 2001-07-11 18:56:41 +0000 | [diff] [blame] | 790 | * GlobalUnfix (KERNEL.198) |
| 791 | * GlobalUnfix16 (KERNEL32.28) |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 792 | */ |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 793 | void WINAPI GlobalUnfix16( HGLOBAL16 handle ) |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 794 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 795 | TRACE("%04x\n", handle ); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 796 | if (!VALID_HANDLE(handle)) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 797 | WARN("Invalid handle 0x%04x passed to GlobalUnfix16!\n",handle); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 798 | return; |
| 799 | } |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 800 | GET_ARENA_PTR(handle)->lockCount--; |
| 801 | } |
| 802 | |
| 803 | |
| 804 | /*********************************************************************** |
| 805 | * FarSetOwner (KERNEL.403) |
| 806 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 807 | void WINAPI FarSetOwner16( HGLOBAL16 handle, HANDLE16 hOwner ) |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 808 | { |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 809 | if (!VALID_HANDLE(handle)) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 810 | WARN("Invalid handle 0x%04x passed to FarSetOwner!\n",handle); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 811 | return; |
| 812 | } |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 813 | GET_ARENA_PTR(handle)->hOwner = hOwner; |
| 814 | } |
| 815 | |
| 816 | |
| 817 | /*********************************************************************** |
| 818 | * FarGetOwner (KERNEL.404) |
| 819 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 820 | HANDLE16 WINAPI FarGetOwner16( HGLOBAL16 handle ) |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 821 | { |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 822 | if (!VALID_HANDLE(handle)) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 823 | WARN("Invalid handle 0x%04x passed to FarGetOwner!\n",handle); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 824 | return 0; |
| 825 | } |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 826 | return GET_ARENA_PTR(handle)->hOwner; |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 827 | } |
| 828 | |
| 829 | |
| 830 | /*********************************************************************** |
| 831 | * GlobalHandleToSel (TOOLHELP.50) |
| 832 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 833 | WORD WINAPI GlobalHandleToSel16( HGLOBAL16 handle ) |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 834 | { |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 835 | if (!handle) return 0; |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 836 | if (!VALID_HANDLE(handle)) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 837 | WARN("Invalid handle 0x%04x passed to GlobalHandleToSel!\n",handle); |
Alexandre Julliard | a11d7b1 | 1998-03-01 20:05:02 +0000 | [diff] [blame] | 838 | return 0; |
| 839 | } |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 840 | if (!(handle & 7)) |
| 841 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 842 | WARN("Program attempted invalid selector conversion\n" ); |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 843 | return handle - 1; |
| 844 | } |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 845 | return handle | 7; |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 846 | } |
| 847 | |
| 848 | |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 849 | /*********************************************************************** |
| 850 | * GlobalFirst (TOOLHELP.51) |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 851 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 852 | BOOL16 WINAPI GlobalFirst16( GLOBALENTRY *pGlobal, WORD wFlags ) |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 853 | { |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 854 | if (wFlags == GLOBAL_LRU) return FALSE; |
| 855 | pGlobal->dwNext = 0; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 856 | return GlobalNext16( pGlobal, wFlags ); |
Alexandre Julliard | e2abbb1 | 1995-03-19 17:39:39 +0000 | [diff] [blame] | 857 | } |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 858 | |
| 859 | |
| 860 | /*********************************************************************** |
| 861 | * GlobalNext (TOOLHELP.52) |
| 862 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 863 | BOOL16 WINAPI GlobalNext16( GLOBALENTRY *pGlobal, WORD wFlags) |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 864 | { |
| 865 | GLOBALARENA *pArena; |
| 866 | |
Alexandre Julliard | 594997c | 1995-04-30 10:05:20 +0000 | [diff] [blame] | 867 | if (pGlobal->dwNext >= globalArenaSize) return FALSE; |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 868 | 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 Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 883 | pGlobal->wFlags = (GetCurrentPDB16() == pArena->hOwner); |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 884 | 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 Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 896 | BOOL16 WINAPI GlobalInfo16( GLOBALINFO *pInfo ) |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 897 | { |
| 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 Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 913 | BOOL16 WINAPI GlobalEntryHandle16( GLOBALENTRY *pGlobal, HGLOBAL16 hItem ) |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 914 | { |
Alexandre Julliard | 03468f7 | 1998-02-15 19:40:49 +0000 | [diff] [blame] | 915 | 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 Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 922 | pGlobal->wFlags = (GetCurrentPDB16() == pArena->hOwner); |
Alexandre Julliard | 03468f7 | 1998-02-15 19:40:49 +0000 | [diff] [blame] | 923 | pGlobal->wHeapPresent = FALSE; |
| 924 | pGlobal->hOwner = pArena->hOwner; |
| 925 | pGlobal->wType = GT_UNKNOWN; |
| 926 | pGlobal->wData = 0; |
| 927 | pGlobal->dwNext++; |
| 928 | return TRUE; |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 929 | } |
| 930 | |
| 931 | |
| 932 | /*********************************************************************** |
| 933 | * GlobalEntryModule (TOOLHELP.55) |
| 934 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 935 | BOOL16 WINAPI GlobalEntryModule16( GLOBALENTRY *pGlobal, HMODULE16 hModule, |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 936 | WORD wSeg ) |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 937 | { |
Andreas Mohr | d23f506 | 2000-10-02 22:16:21 +0000 | [diff] [blame] | 938 | FIXME("(%p, 0x%04x, 0x%04x), stub.\n", pGlobal, hModule, wSeg); |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 939 | return FALSE; |
| 940 | } |
| 941 | |
| 942 | |
| 943 | /*********************************************************************** |
| 944 | * MemManInfo (TOOLHELP.72) |
| 945 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 946 | BOOL16 WINAPI MemManInfo16( MEMMANINFO *info ) |
Alexandre Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 947 | { |
Alexandre Julliard | 75d86e1 | 1996-11-17 18:59:11 +0000 | [diff] [blame] | 948 | MEMORYSTATUS status; |
Alexandre Julliard | 4f8c37b | 1996-01-14 18:12:01 +0000 | [diff] [blame] | 949 | |
Alexandre Julliard | df2673b | 1997-03-29 17:20:20 +0000 | [diff] [blame] | 950 | /* |
| 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 Julliard | 75d86e1 | 1996-11-17 18:59:11 +0000 | [diff] [blame] | 955 | GlobalMemoryStatus( &status ); |
Alexandre Julliard | 982a223 | 2000-12-13 20:20:09 +0000 | [diff] [blame] | 956 | info->wPageSize = getpagesize(); |
Alexandre Julliard | 75d86e1 | 1996-11-17 18:59:11 +0000 | [diff] [blame] | 957 | 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 Julliard | fa68b75 | 1995-04-03 16:55:37 +0000 | [diff] [blame] | 966 | return TRUE; |
| 967 | } |
Alexandre Julliard | 2787be8 | 1995-05-22 18:23:01 +0000 | [diff] [blame] | 968 | |
Alexandre Julliard | 60ce85c | 1998-02-01 18:33:27 +0000 | [diff] [blame] | 969 | /*********************************************************************** |
| 970 | * GetFreeMemInfo (KERNEL.316) |
| 971 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 972 | DWORD WINAPI GetFreeMemInfo16(void) |
Alexandre Julliard | 60ce85c | 1998-02-01 18:33:27 +0000 | [diff] [blame] | 973 | { |
| 974 | MEMMANINFO info; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 975 | MemManInfo16( &info ); |
Alexandre Julliard | 60ce85c | 1998-02-01 18:33:27 +0000 | [diff] [blame] | 976 | return MAKELONG( info.dwTotalLinearSpace, info.dwMaxPagesAvailable ); |
| 977 | } |
| 978 | |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 979 | /* |
| 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 Julliard | 17216f5 | 1997-10-12 16:30:17 +0000 | [diff] [blame] | 993 | #define HANDLE_TO_INTERN(h) ((PGLOBAL32_INTERN)(((char *)(h))-2)) |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 994 | #define INTERN_TO_HANDLE(i) ((HGLOBAL) &((i)->Pointer)) |
| 995 | #define POINTER_TO_HANDLE(p) (*(((HGLOBAL *)(p))-1)) |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 996 | #define ISHANDLE(h) (((DWORD)(h)&2)!=0) |
| 997 | #define ISPOINTER(h) (((DWORD)(h)&2)==0) |
| 998 | |
| 999 | typedef 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 Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 1007 | |
| 1008 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 1009 | * GlobalAlloc (KERNEL32.@) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1010 | * RETURNS |
| 1011 | * Handle: Success |
| 1012 | * NULL: Failure |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 1013 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1014 | HGLOBAL WINAPI GlobalAlloc( |
| 1015 | UINT flags, /* [in] Object allocation attributes */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1016 | DWORD size /* [in] Number of bytes to allocate */ |
| 1017 | ) { |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1018 | PGLOBAL32_INTERN pintern; |
| 1019 | DWORD hpflags; |
| 1020 | LPVOID palloc; |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 1021 | |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1022 | if(flags&GMEM_ZEROINIT) |
| 1023 | hpflags=HEAP_ZERO_MEMORY; |
| 1024 | else |
| 1025 | hpflags=0; |
| 1026 | |
Noel Borthwick | 83579c8 | 1999-07-24 12:18:04 +0000 | [diff] [blame] | 1027 | TRACE("() flags=%04x\n", flags ); |
| 1028 | |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1029 | if((flags & GMEM_MOVEABLE)==0) /* POINTER */ |
| 1030 | { |
| 1031 | palloc=HeapAlloc(GetProcessHeap(), hpflags, size); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1032 | return (HGLOBAL) palloc; |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1033 | } |
| 1034 | else /* HANDLE */ |
| 1035 | { |
Noel Borthwick | 83579c8 | 1999-07-24 12:18:04 +0000 | [diff] [blame] | 1036 | /* HeapLock(heap); */ |
| 1037 | |
Alexandre Julliard | 61d32b4 | 2001-02-23 01:35:36 +0000 | [diff] [blame] | 1038 | pintern=HeapAlloc(GetProcessHeap(), 0, sizeof(GLOBAL32_INTERN)); |
Alexandre Julliard | 982a223 | 2000-12-13 20:20:09 +0000 | [diff] [blame] | 1039 | if (!pintern) return 0; |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1040 | if(size) |
| 1041 | { |
Alexandre Julliard | 61d32b4 | 2001-02-23 01:35:36 +0000 | [diff] [blame] | 1042 | if (!(palloc=HeapAlloc(GetProcessHeap(), hpflags, size+sizeof(HGLOBAL)))) { |
| 1043 | HeapFree(GetProcessHeap(), 0, pintern); |
Alexandre Julliard | 982a223 | 2000-12-13 20:20:09 +0000 | [diff] [blame] | 1044 | return 0; |
Eric Pouech | 3bcfb90 | 2000-06-24 12:51:24 +0000 | [diff] [blame] | 1045 | } |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1046 | *(HGLOBAL *)palloc=INTERN_TO_HANDLE(pintern); |
Patrik Stridvall | a9a671d | 1999-04-25 19:01:52 +0000 | [diff] [blame] | 1047 | pintern->Pointer=(char *) palloc+sizeof(HGLOBAL); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1048 | } |
| 1049 | else |
| 1050 | pintern->Pointer=NULL; |
| 1051 | pintern->Magic=MAGIC_GLOBAL_USED; |
| 1052 | pintern->Flags=flags>>8; |
| 1053 | pintern->LockCount=0; |
| 1054 | |
Noel Borthwick | 83579c8 | 1999-07-24 12:18:04 +0000 | [diff] [blame] | 1055 | /* HeapUnlock(heap); */ |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1056 | |
| 1057 | return INTERN_TO_HANDLE(pintern); |
| 1058 | } |
| 1059 | } |
| 1060 | |
| 1061 | |
| 1062 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 1063 | * GlobalLock (KERNEL32.@) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1064 | * RETURNS |
| 1065 | * Pointer to first byte of block |
| 1066 | * NULL: Failure |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1067 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1068 | LPVOID WINAPI GlobalLock( |
| 1069 | HGLOBAL hmem /* [in] Handle of global memory object */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1070 | ) { |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1071 | 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 Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 1088 | WARN("invalid handle\n"); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1089 | palloc=(LPVOID) NULL; |
Dmitry Timoshkov | c34fe08 | 2000-11-27 01:33:25 +0000 | [diff] [blame] | 1090 | SetLastError(ERROR_INVALID_HANDLE); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1091 | } |
| 1092 | /* HeapUnlock(GetProcessHeap()); */; |
| 1093 | return palloc; |
| 1094 | } |
| 1095 | |
| 1096 | |
| 1097 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 1098 | * GlobalUnlock (KERNEL32.@) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1099 | * RETURNS |
| 1100 | * TRUE: Object is still locked |
| 1101 | * FALSE: Object is unlocked |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1102 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1103 | BOOL WINAPI GlobalUnlock( |
| 1104 | HGLOBAL hmem /* [in] Handle of global memory object */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1105 | ) { |
Andreas Mohr | 55a14ed | 2001-11-20 20:26:35 +0000 | [diff] [blame^] | 1106 | PGLOBAL32_INTERN pintern; |
| 1107 | BOOL locked; |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1108 | |
Andreas Mohr | 55a14ed | 2001-11-20 20:26:35 +0000 | [diff] [blame^] | 1109 | if (ISPOINTER(hmem)) return FALSE; |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1110 | |
Andreas Mohr | 55a14ed | 2001-11-20 20:26:35 +0000 | [diff] [blame^] | 1111 | __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 Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1119 | |
Andreas Mohr | 55a14ed | 2001-11-20 20:26:35 +0000 | [diff] [blame^] | 1120 | 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 Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1139 | } |
| 1140 | |
| 1141 | |
| 1142 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 1143 | * GlobalHandle (KERNEL32.@) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1144 | * Returns the handle associated with the specified pointer. |
| 1145 | * |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1146 | * RETURNS |
| 1147 | * Handle: Success |
| 1148 | * NULL: Failure |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1149 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1150 | HGLOBAL WINAPI GlobalHandle( |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1151 | LPCVOID pmem /* [in] Pointer to global memory block */ |
| 1152 | ) { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1153 | HGLOBAL handle; |
Guy Albertelli | 4ef6413 | 2000-01-23 02:25:11 +0000 | [diff] [blame] | 1154 | PGLOBAL32_INTERN maybe_intern; |
| 1155 | LPCVOID test; |
Guy Albertelli | 9867997 | 2000-01-15 21:59:12 +0000 | [diff] [blame] | 1156 | |
| 1157 | if (!pmem) |
| 1158 | { |
Lawson Whitney | 969515d | 2000-10-02 22:27:37 +0000 | [diff] [blame] | 1159 | SetLastError( ERROR_INVALID_PARAMETER ); |
| 1160 | return 0; |
Guy Albertelli | 9867997 | 2000-01-15 21:59:12 +0000 | [diff] [blame] | 1161 | } |
Alexandre Julliard | 60ce85c | 1998-02-01 18:33:27 +0000 | [diff] [blame] | 1162 | |
Lawson Whitney | 969515d | 2000-10-02 22:27:37 +0000 | [diff] [blame] | 1163 | __TRY |
| 1164 | { |
| 1165 | handle = 0; |
Guy Albertelli | 4ef6413 | 2000-01-23 02:25:11 +0000 | [diff] [blame] | 1166 | |
Lawson Whitney | 969515d | 2000-10-02 22:27:37 +0000 | [diff] [blame] | 1167 | /* 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 Julliard | 61d32b4 | 2001-02-23 01:35:36 +0000 | [diff] [blame] | 1171 | if (HeapValidate( GetProcessHeap(), 0, pmem )) { |
Lawson Whitney | 969515d | 2000-10-02 22:27:37 +0000 | [diff] [blame] | 1172 | 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 Whitney | 969515d | 2000-10-02 22:27:37 +0000 | [diff] [blame] | 1180 | maybe_intern = HANDLE_TO_INTERN( handle ); |
| 1181 | if (maybe_intern->Magic == MAGIC_GLOBAL_USED) { |
| 1182 | test = maybe_intern->Pointer; |
Alexandre Julliard | 61d32b4 | 2001-02-23 01:35:36 +0000 | [diff] [blame] | 1183 | if (HeapValidate( GetProcessHeap(), 0, ((HGLOBAL *)test)-1 ) && /* obj(-handle) valid arena? */ |
| 1184 | HeapValidate( GetProcessHeap(), 0, maybe_intern )) /* intern valid arena? */ |
Lawson Whitney | 969515d | 2000-10-02 22:27:37 +0000 | [diff] [blame] | 1185 | break; /* valid moveable block */ |
| 1186 | } |
| 1187 | handle = 0; |
| 1188 | SetLastError( ERROR_INVALID_HANDLE ); |
Alexandre Julliard | 17216f5 | 1997-10-12 16:30:17 +0000 | [diff] [blame] | 1189 | } |
Lawson Whitney | 969515d | 2000-10-02 22:27:37 +0000 | [diff] [blame] | 1190 | __EXCEPT(page_fault) |
| 1191 | { |
| 1192 | SetLastError( ERROR_INVALID_HANDLE ); |
| 1193 | return 0; |
| 1194 | } |
| 1195 | __ENDTRY |
Alexandre Julliard | 17216f5 | 1997-10-12 16:30:17 +0000 | [diff] [blame] | 1196 | |
Lawson Whitney | 969515d | 2000-10-02 22:27:37 +0000 | [diff] [blame] | 1197 | return handle; |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1198 | } |
| 1199 | |
| 1200 | |
| 1201 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 1202 | * GlobalReAlloc (KERNEL32.@) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1203 | * RETURNS |
| 1204 | * Handle: Success |
| 1205 | * NULL: Failure |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1206 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1207 | HGLOBAL WINAPI GlobalReAlloc( |
| 1208 | HGLOBAL hmem, /* [in] Handle of global memory object */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1209 | DWORD size, /* [in] New size of block */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1210 | UINT flags /* [in] How to reallocate object */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1211 | ) { |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1212 | LPVOID palloc; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1213 | HGLOBAL hnew; |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1214 | PGLOBAL32_INTERN pintern; |
Alexandre Julliard | d10ca9c | 1999-09-04 11:26:56 +0000 | [diff] [blame] | 1215 | DWORD heap_flags = (flags & GMEM_ZEROINIT) ? HEAP_ZERO_MEMORY : 0; |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1216 | |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 1217 | hnew = 0; |
Noel Borthwick | 83579c8 | 1999-07-24 12:18:04 +0000 | [diff] [blame] | 1218 | /* HeapLock(heap); */ |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1219 | 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 Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1226 | if (hmem == 0) |
| 1227 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 1228 | ERR("GlobalReAlloc32 with null handle!\n"); |
Alexandre Julliard | 0ad42fa | 1999-01-31 15:04:42 +0000 | [diff] [blame] | 1229 | SetLastError( ERROR_NOACCESS ); |
Alexandre Julliard | a0d7731 | 1998-09-13 16:32:00 +0000 | [diff] [blame] | 1230 | return 0; |
| 1231 | } |
Alexandre Julliard | 61d32b4 | 2001-02-23 01:35:36 +0000 | [diff] [blame] | 1232 | size=HeapSize(GetProcessHeap(), 0, (LPVOID) hmem); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1233 | hnew=GlobalAlloc( flags, size); |
| 1234 | palloc=GlobalLock(hnew); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1235 | memcpy(palloc, (LPVOID) hmem, size); |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1236 | GlobalUnlock(hnew); |
| 1237 | GlobalFree(hmem); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1238 | } |
| 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 Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 1249 | hnew = 0; |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1250 | } |
| 1251 | } |
| 1252 | else |
| 1253 | { |
| 1254 | if(ISPOINTER(hmem)) |
| 1255 | { |
| 1256 | /* reallocate fixed memory */ |
Alexandre Julliard | 61d32b4 | 2001-02-23 01:35:36 +0000 | [diff] [blame] | 1257 | hnew=(HGLOBAL)HeapReAlloc(GetProcessHeap(), heap_flags, (LPVOID) hmem, size); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1258 | } |
| 1259 | else |
| 1260 | { |
| 1261 | /* reallocate a moveable block */ |
| 1262 | pintern=HANDLE_TO_INTERN(hmem); |
Ulrich Weigand | 2e7008c | 2000-10-19 20:24:25 +0000 | [diff] [blame] | 1263 | |
| 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 Julliard | c7c217b | 1998-04-13 12:21:30 +0000 | [diff] [blame] | 1267 | if(pintern->LockCount>1) { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 1268 | ERR("handle 0x%08lx is still locked, cannot realloc!\n",(DWORD)hmem); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1269 | SetLastError(ERROR_INVALID_HANDLE); |
Ulrich Weigand | 2e7008c | 2000-10-19 20:24:25 +0000 | [diff] [blame] | 1270 | } else |
| 1271 | #endif |
| 1272 | if(size!=0) |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1273 | { |
| 1274 | hnew=hmem; |
| 1275 | if(pintern->Pointer) |
| 1276 | { |
Alexandre Julliard | 61d32b4 | 2001-02-23 01:35:36 +0000 | [diff] [blame] | 1277 | if((palloc = HeapReAlloc(GetProcessHeap(), heap_flags, |
Huw D M Davies | c43fdb7 | 2000-04-13 15:57:06 +0000 | [diff] [blame] | 1278 | (char *) pintern->Pointer-sizeof(HGLOBAL), |
| 1279 | size+sizeof(HGLOBAL))) == NULL) |
| 1280 | return 0; /* Block still valid */ |
Patrik Stridvall | a9a671d | 1999-04-25 19:01:52 +0000 | [diff] [blame] | 1281 | pintern->Pointer=(char *) palloc+sizeof(HGLOBAL); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1282 | } |
| 1283 | else |
| 1284 | { |
Alexandre Julliard | 61d32b4 | 2001-02-23 01:35:36 +0000 | [diff] [blame] | 1285 | if((palloc=HeapAlloc(GetProcessHeap(), heap_flags, size+sizeof(HGLOBAL))) |
Huw D M Davies | c43fdb7 | 2000-04-13 15:57:06 +0000 | [diff] [blame] | 1286 | == NULL) |
| 1287 | return 0; |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1288 | *(HGLOBAL *)palloc=hmem; |
Patrik Stridvall | a9a671d | 1999-04-25 19:01:52 +0000 | [diff] [blame] | 1289 | pintern->Pointer=(char *) palloc+sizeof(HGLOBAL); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1290 | } |
| 1291 | } |
| 1292 | else |
| 1293 | { |
| 1294 | if(pintern->Pointer) |
| 1295 | { |
Alexandre Julliard | 61d32b4 | 2001-02-23 01:35:36 +0000 | [diff] [blame] | 1296 | HeapFree(GetProcessHeap(), 0, (char *) pintern->Pointer-sizeof(HGLOBAL)); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1297 | pintern->Pointer=NULL; |
| 1298 | } |
| 1299 | } |
| 1300 | } |
| 1301 | } |
Noel Borthwick | 83579c8 | 1999-07-24 12:18:04 +0000 | [diff] [blame] | 1302 | /* HeapUnlock(heap); */ |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1303 | return hnew; |
| 1304 | } |
| 1305 | |
| 1306 | |
| 1307 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 1308 | * GlobalFree (KERNEL32.@) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1309 | * RETURNS |
| 1310 | * NULL: Success |
| 1311 | * Handle: Failure |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1312 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1313 | HGLOBAL WINAPI GlobalFree( |
| 1314 | HGLOBAL hmem /* [in] Handle of global memory object */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1315 | ) { |
Andreas Mohr | 55a14ed | 2001-11-20 20:26:35 +0000 | [diff] [blame^] | 1316 | PGLOBAL32_INTERN pintern; |
| 1317 | HGLOBAL hreturned; |
Alexandre Julliard | 61d32b4 | 2001-02-23 01:35:36 +0000 | [diff] [blame] | 1318 | |
Andreas Mohr | 55a14ed | 2001-11-20 20:26:35 +0000 | [diff] [blame^] | 1319 | __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 Albertelli | 4ef6413 | 2000-01-23 02:25:11 +0000 | [diff] [blame] | 1330 | |
Andreas Mohr | 55a14ed | 2001-11-20 20:26:35 +0000 | [diff] [blame^] | 1331 | if(pintern->Magic==MAGIC_GLOBAL_USED) |
| 1332 | { |
Guy Albertelli | 4ef6413 | 2000-01-23 02:25:11 +0000 | [diff] [blame] | 1333 | |
Andreas Mohr | 55a14ed | 2001-11-20 20:26:35 +0000 | [diff] [blame^] | 1334 | /* 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 Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1356 | } |
| 1357 | |
| 1358 | |
| 1359 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 1360 | * GlobalSize (KERNEL32.@) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1361 | * RETURNS |
| 1362 | * Size in bytes of the global memory object |
| 1363 | * 0: Failure |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1364 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1365 | DWORD WINAPI GlobalSize( |
| 1366 | HGLOBAL hmem /* [in] Handle of global memory object */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1367 | ) { |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1368 | DWORD retval; |
| 1369 | PGLOBAL32_INTERN pintern; |
| 1370 | |
| 1371 | if(ISPOINTER(hmem)) |
| 1372 | { |
Alexandre Julliard | 61d32b4 | 2001-02-23 01:35:36 +0000 | [diff] [blame] | 1373 | retval=HeapSize(GetProcessHeap(), 0, (LPVOID) hmem); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1374 | } |
| 1375 | else |
| 1376 | { |
Noel Borthwick | 83579c8 | 1999-07-24 12:18:04 +0000 | [diff] [blame] | 1377 | /* HeapLock(heap); */ |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1378 | pintern=HANDLE_TO_INTERN(hmem); |
| 1379 | |
| 1380 | if(pintern->Magic==MAGIC_GLOBAL_USED) |
| 1381 | { |
Guy Albertelli | 3db8e19 | 1999-02-14 17:38:24 +0000 | [diff] [blame] | 1382 | if (!pintern->Pointer) /* handle case of GlobalAlloc( ??,0) */ |
| 1383 | return 0; |
Alexandre Julliard | 61d32b4 | 2001-02-23 01:35:36 +0000 | [diff] [blame] | 1384 | retval=HeapSize(GetProcessHeap(), 0, |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1385 | (char *)(pintern->Pointer)-sizeof(HGLOBAL))-4; |
Rein Klazes | eaec1ee | 1999-07-11 13:50:24 +0000 | [diff] [blame] | 1386 | if (retval == 0xffffffff-4) retval = 0; |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1387 | } |
| 1388 | else |
| 1389 | { |
Alexandre Julliard | 1565709 | 1999-05-23 10:25:25 +0000 | [diff] [blame] | 1390 | WARN("invalid handle\n"); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1391 | retval=0; |
| 1392 | } |
Noel Borthwick | 83579c8 | 1999-07-24 12:18:04 +0000 | [diff] [blame] | 1393 | /* HeapUnlock(heap); */ |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1394 | } |
Guy Albertelli | 3db8e19 | 1999-02-14 17:38:24 +0000 | [diff] [blame] | 1395 | /* HeapSize returns 0xffffffff on failure */ |
| 1396 | if (retval == 0xffffffff) retval = 0; |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1397 | return retval; |
| 1398 | } |
| 1399 | |
| 1400 | |
| 1401 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 1402 | * GlobalWire (KERNEL32.@) |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1403 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1404 | LPVOID WINAPI GlobalWire(HGLOBAL hmem) |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1405 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1406 | return GlobalLock( hmem ); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1407 | } |
| 1408 | |
| 1409 | |
| 1410 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 1411 | * GlobalUnWire (KERNEL32.@) |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1412 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1413 | BOOL WINAPI GlobalUnWire(HGLOBAL hmem) |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1414 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1415 | return GlobalUnlock( hmem); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1416 | } |
| 1417 | |
| 1418 | |
| 1419 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 1420 | * GlobalFix (KERNEL32.@) |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1421 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1422 | VOID WINAPI GlobalFix(HGLOBAL hmem) |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1423 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1424 | GlobalLock( hmem ); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1425 | } |
| 1426 | |
| 1427 | |
| 1428 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 1429 | * GlobalUnfix (KERNEL32.@) |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1430 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1431 | VOID WINAPI GlobalUnfix(HGLOBAL hmem) |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1432 | { |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1433 | GlobalUnlock( hmem); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1434 | } |
| 1435 | |
| 1436 | |
| 1437 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 1438 | * GlobalFlags (KERNEL32.@) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1439 | * 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 Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1447 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1448 | UINT WINAPI GlobalFlags( |
| 1449 | HGLOBAL hmem /* [in] Handle to global memory object */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1450 | ) { |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1451 | 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 Gouget | e76218d | 2001-05-09 17:31:31 +0000 | [diff] [blame] | 1470 | WARN("Invalid handle: %04x\n", hmem); |
Alexandre Julliard | f0cbfa0 | 1997-02-15 14:29:56 +0000 | [diff] [blame] | 1471 | retval=0; |
| 1472 | } |
| 1473 | /* HeapUnlock(GetProcessHeap()); */ |
| 1474 | } |
| 1475 | return retval; |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 1476 | } |
| 1477 | |
| 1478 | |
| 1479 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 1480 | * GlobalCompact (KERNEL32.@) |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 1481 | */ |
Alexandre Julliard | a396029 | 1999-02-26 11:11:13 +0000 | [diff] [blame] | 1482 | DWORD WINAPI GlobalCompact( DWORD minfree ) |
Alexandre Julliard | 1285c2f | 1996-05-06 16:06:24 +0000 | [diff] [blame] | 1483 | { |
| 1484 | return 0; /* GlobalCompact does nothing in Win32 */ |
| 1485 | } |
| 1486 | |
| 1487 | |
| 1488 | /*********************************************************************** |
Patrik Stridvall | dae8de6 | 2001-06-13 20:13:18 +0000 | [diff] [blame] | 1489 | * GlobalMemoryStatus (KERNEL32.@) |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1490 | * RETURNS |
| 1491 | * None |
Alexandre Julliard | 0e270f4 | 1996-08-24 18:26:35 +0000 | [diff] [blame] | 1492 | */ |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 1493 | VOID WINAPI GlobalMemoryStatus( |
| 1494 | LPMEMORYSTATUS lpmem |
| 1495 | ) { |
Marcus Meissner | 6189c19 | 2000-03-04 19:19:15 +0000 | [diff] [blame] | 1496 | static MEMORYSTATUS cached_memstatus; |
| 1497 | static int cache_lastchecked = 0; |
Francois Gouget | ea5924c | 2000-10-28 00:34:29 +0000 | [diff] [blame] | 1498 | SYSTEM_INFO si; |
Patrik Stridvall | 7e9913f | 2000-03-08 18:25:22 +0000 | [diff] [blame] | 1499 | #ifdef linux |
Marcus Meissner | 6189c19 | 2000-03-04 19:19:15 +0000 | [diff] [blame] | 1500 | FILE *f; |
Patrik Stridvall | 7e9913f | 2000-03-08 18:25:22 +0000 | [diff] [blame] | 1501 | #endif |
Marcus Meissner | 6189c19 | 2000-03-04 19:19:15 +0000 | [diff] [blame] | 1502 | |
| 1503 | if (time(NULL)==cache_lastchecked) { |
| 1504 | memcpy(lpmem,&cached_memstatus,sizeof(MEMORYSTATUS)); |
| 1505 | return; |
| 1506 | } |
| 1507 | cache_lastchecked = time(NULL); |
| 1508 | |
Alexandre Julliard | 75d86e1 | 1996-11-17 18:59:11 +0000 | [diff] [blame] | 1509 | #ifdef linux |
Marcus Meissner | 6189c19 | 2000-03-04 19:19:15 +0000 | [diff] [blame] | 1510 | f = fopen( "/proc/meminfo", "r" ); |
Alexandre Julliard | 75d86e1 | 1996-11-17 18:59:11 +0000 | [diff] [blame] | 1511 | if (f) |
| 1512 | { |
| 1513 | char buffer[256]; |
Stephen Crowley | 59c4a32 | 1998-11-24 20:41:02 +0000 | [diff] [blame] | 1514 | int total, used, free, shared, buffers, cached; |
Alexandre Julliard | 75d86e1 | 1996-11-17 18:59:11 +0000 | [diff] [blame] | 1515 | |
Stephen Crowley | 59c4a32 | 1998-11-24 20:41:02 +0000 | [diff] [blame] | 1516 | lpmem->dwLength = sizeof(MEMORYSTATUS); |
Alexandre Julliard | 75d86e1 | 1996-11-17 18:59:11 +0000 | [diff] [blame] | 1517 | lpmem->dwTotalPhys = lpmem->dwAvailPhys = 0; |
| 1518 | lpmem->dwTotalPageFile = lpmem->dwAvailPageFile = 0; |
| 1519 | while (fgets( buffer, sizeof(buffer), f )) |
| 1520 | { |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 1521 | /* old style /proc/meminfo ... */ |
Stephen Crowley | 59c4a32 | 1998-11-24 20:41:02 +0000 | [diff] [blame] | 1522 | if (sscanf( buffer, "Mem: %d %d %d %d %d %d", &total, &used, &free, &shared, &buffers, &cached )) |
Alexandre Julliard | 75d86e1 | 1996-11-17 18:59:11 +0000 | [diff] [blame] | 1523 | { |
| 1524 | lpmem->dwTotalPhys += total; |
Stephen Crowley | 59c4a32 | 1998-11-24 20:41:02 +0000 | [diff] [blame] | 1525 | lpmem->dwAvailPhys += free + buffers + cached; |
Alexandre Julliard | 75d86e1 | 1996-11-17 18:59:11 +0000 | [diff] [blame] | 1526 | } |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 1527 | if (sscanf( buffer, "Swap: %d %d %d", &total, &used, &free )) |
Alexandre Julliard | 75d86e1 | 1996-11-17 18:59:11 +0000 | [diff] [blame] | 1528 | { |
| 1529 | lpmem->dwTotalPageFile += total; |
| 1530 | lpmem->dwAvailPageFile += free; |
| 1531 | } |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 1532 | |
| 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 Crowley | 59c4a32 | 1998-11-24 20:41:02 +0000 | [diff] [blame] | 1542 | if (sscanf(buffer, "Buffers: %d", &buffers)) |
| 1543 | lpmem->dwAvailPhys += buffers*1024; |
| 1544 | if (sscanf(buffer, "Cached: %d", &cached)) |
| 1545 | lpmem->dwAvailPhys += cached*1024; |
Alexandre Julliard | 75d86e1 | 1996-11-17 18:59:11 +0000 | [diff] [blame] | 1546 | } |
| 1547 | fclose( f ); |
| 1548 | |
| 1549 | if (lpmem->dwTotalPhys) |
| 1550 | { |
Francois Gouget | ea5924c | 2000-10-28 00:34:29 +0000 | [diff] [blame] | 1551 | DWORD TotalPhysical = lpmem->dwTotalPhys+lpmem->dwTotalPageFile; |
| 1552 | DWORD AvailPhysical = lpmem->dwAvailPhys+lpmem->dwAvailPageFile; |
| 1553 | lpmem->dwMemoryLoad = (TotalPhysical-AvailPhysical) |
| 1554 | / (TotalPhysical / 100); |
Alexandre Julliard | 75d86e1 | 1996-11-17 18:59:11 +0000 | [diff] [blame] | 1555 | } |
Marcus Meissner | fddbcf3 | 2000-03-07 12:24:58 +0000 | [diff] [blame] | 1556 | } else |
Alexandre Julliard | 75d86e1 | 1996-11-17 18:59:11 +0000 | [diff] [blame] | 1557 | #endif |
Marcus Meissner | fddbcf3 | 2000-03-07 12:24:58 +0000 | [diff] [blame] | 1558 | { |
| 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 Meissner | fddbcf3 | 2000-03-07 12:24:58 +0000 | [diff] [blame] | 1565 | } |
Francois Gouget | ea5924c | 2000-10-28 00:34:29 +0000 | [diff] [blame] | 1566 | 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 Meissner | fddbcf3 | 2000-03-07 12:24:58 +0000 | [diff] [blame] | 1570 | memcpy(&cached_memstatus,lpmem,sizeof(MEMORYSTATUS)); |
Mike McCormack | c56a79a | 2001-01-04 19:52:51 +0000 | [diff] [blame] | 1571 | |
| 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 Julliard | 0e270f4 | 1996-08-24 18:26:35 +0000 | [diff] [blame] | 1578 | } |
Alexandre Julliard | 670cdc4 | 1997-08-24 16:00:30 +0000 | [diff] [blame] | 1579 | |
Alexandre Julliard | 4220b29 | 1999-07-11 17:20:01 +0000 | [diff] [blame] | 1580 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 1581 | * A20Proc (KERNEL.165) |
Patrik Stridvall | 044855c | 2001-07-11 18:56:41 +0000 | [diff] [blame] | 1582 | * A20_Proc (SYSTEM.20) |
Alexandre Julliard | 4220b29 | 1999-07-11 17:20:01 +0000 | [diff] [blame] | 1583 | */ |
| 1584 | void WINAPI A20Proc16( WORD unused ) |
| 1585 | { |
| 1586 | /* this is also a NOP in Windows */ |
| 1587 | } |
| 1588 | |
| 1589 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 1590 | * LimitEMSPages (KERNEL.156) |
Alexandre Julliard | 4220b29 | 1999-07-11 17:20:01 +0000 | [diff] [blame] | 1591 | */ |
| 1592 | DWORD WINAPI LimitEMSPages16( DWORD unused ) |
| 1593 | { |
| 1594 | return 0; |
| 1595 | } |