Fix GIF palette allocation, by relying on ColorCount instead of
[wine] / dlls / kernel / task.c
1 /*
2  * Task functions
3  *
4  * Copyright 1995 Alexandre Julliard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23
24 #include <stdarg.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <assert.h>
28 #ifdef HAVE_UNISTD_H
29 # include <unistd.h>
30 #endif
31
32 #include "windef.h"
33 #include "winbase.h"
34 #include "wingdi.h"
35 #include "winnt.h"
36 #include "wownt32.h"
37 #include "winuser.h"
38
39 #include "wine/winbase16.h"
40 #include "thread.h"
41 #include "winternl.h"
42 #include "wine/server.h"
43 #include "toolhelp.h"
44 #include "kernel_private.h"
45 #include "kernel16_private.h"
46
47 #include "wine/debug.h"
48
49 WINE_DEFAULT_DEBUG_CHANNEL(task);
50 WINE_DECLARE_DEBUG_CHANNEL(relay);
51 WINE_DECLARE_DEBUG_CHANNEL(toolhelp);
52
53 #include "pshpack1.h"
54
55 /* Segment containing MakeProcInstance() thunks */
56 typedef struct
57 {
58     WORD  next;       /* Selector of next segment */
59     WORD  magic;      /* Thunks signature */
60     WORD  unused;
61     WORD  free;       /* Head of the free list */
62     WORD  thunks[4];  /* Each thunk is 4 words long */
63 } THUNKS;
64
65 #include "poppack.h"
66
67 #define THUNK_MAGIC  ('P' | ('T' << 8))
68
69   /* Min. number of thunks allocated when creating a new segment */
70 #define MIN_THUNKS  32
71
72 #define TDB_MAGIC    ('T' | ('D' << 8))
73
74 static THHOOK DefaultThhook;
75 THHOOK *pThhook = &DefaultThhook;
76
77 #define hFirstTask   (pThhook->HeadTDB)
78 #define hLockedTask  (pThhook->LockTDB)
79
80 static UINT16 nTaskCount = 0;
81
82 static HTASK16 initial_task, main_task;
83
84 /***********************************************************************
85  *           TASK_InstallTHHook
86  */
87 void TASK_InstallTHHook( THHOOK *pNewThhook )
88 {
89      THHOOK *pOldThhook = pThhook;
90
91      pThhook = pNewThhook? pNewThhook : &DefaultThhook;
92
93      *pThhook = *pOldThhook;
94 }
95
96 /***********************************************************************
97  *           TASK_GetPtr
98  */
99 static TDB *TASK_GetPtr( HTASK16 hTask )
100 {
101     return GlobalLock16( hTask );
102 }
103
104
105 /***********************************************************************
106  *           TASK_GetCurrent
107  */
108 TDB *TASK_GetCurrent(void)
109 {
110     return TASK_GetPtr( GetCurrentTask() );
111 }
112
113
114 /***********************************************************************
115  *           TASK_LinkTask
116  */
117 static void TASK_LinkTask( HTASK16 hTask )
118 {
119     HTASK16 *prevTask;
120     TDB *pTask;
121
122     if (!(pTask = TASK_GetPtr( hTask ))) return;
123     prevTask = &hFirstTask;
124     while (*prevTask)
125     {
126         TDB *prevTaskPtr = TASK_GetPtr( *prevTask );
127         if (prevTaskPtr->priority >= pTask->priority) break;
128         prevTask = &prevTaskPtr->hNext;
129     }
130     pTask->hNext = *prevTask;
131     *prevTask = hTask;
132     nTaskCount++;
133 }
134
135
136 /***********************************************************************
137  *           TASK_UnlinkTask
138  */
139 static void TASK_UnlinkTask( HTASK16 hTask )
140 {
141     HTASK16 *prevTask;
142     TDB *pTask;
143
144     prevTask = &hFirstTask;
145     while (*prevTask && (*prevTask != hTask))
146     {
147         pTask = TASK_GetPtr( *prevTask );
148         prevTask = &pTask->hNext;
149     }
150     if (*prevTask)
151     {
152         pTask = TASK_GetPtr( *prevTask );
153         *prevTask = pTask->hNext;
154         pTask->hNext = 0;
155         nTaskCount--;
156     }
157 }
158
159
160 /***********************************************************************
161  *           TASK_CreateThunks
162  *
163  * Create a thunk free-list in segment 'handle', starting from offset 'offset'
164  * and containing 'count' entries.
165  */
166 static void TASK_CreateThunks( HGLOBAL16 handle, WORD offset, WORD count )
167 {
168     int i;
169     WORD free;
170     THUNKS *pThunk;
171
172     pThunk = (THUNKS *)((BYTE *)GlobalLock16( handle ) + offset);
173     pThunk->next = 0;
174     pThunk->magic = THUNK_MAGIC;
175     pThunk->free = (int)&pThunk->thunks - (int)pThunk;
176     free = pThunk->free;
177     for (i = 0; i < count-1; i++)
178     {
179         free += 8;  /* Offset of next thunk */
180         pThunk->thunks[4*i] = free;
181     }
182     pThunk->thunks[4*i] = 0;  /* Last thunk */
183 }
184
185
186 /***********************************************************************
187  *           TASK_AllocThunk
188  *
189  * Allocate a thunk for MakeProcInstance().
190  */
191 static SEGPTR TASK_AllocThunk(void)
192 {
193     TDB *pTask;
194     THUNKS *pThunk;
195     WORD sel, base;
196
197     if (!(pTask = TASK_GetCurrent())) return 0;
198     sel = pTask->hCSAlias;
199     pThunk = (THUNKS *)&pTask->thunks;
200     base = (char *)pThunk - (char *)pTask;
201     while (!pThunk->free)
202     {
203         sel = pThunk->next;
204         if (!sel)  /* Allocate a new segment */
205         {
206             sel = GLOBAL_Alloc( GMEM_FIXED, sizeof(THUNKS) + (MIN_THUNKS-1)*8,
207                                 pTask->hPDB, WINE_LDT_FLAGS_CODE );
208             if (!sel) return (SEGPTR)0;
209             TASK_CreateThunks( sel, 0, MIN_THUNKS );
210             pThunk->next = sel;
211         }
212         pThunk = (THUNKS *)GlobalLock16( sel );
213         base = 0;
214     }
215     base += pThunk->free;
216     pThunk->free = *(WORD *)((BYTE *)pThunk + pThunk->free);
217     return MAKESEGPTR( sel, base );
218 }
219
220
221 /***********************************************************************
222  *           TASK_FreeThunk
223  *
224  * Free a MakeProcInstance() thunk.
225  */
226 static BOOL TASK_FreeThunk( SEGPTR thunk )
227 {
228     TDB *pTask;
229     THUNKS *pThunk;
230     WORD sel, base;
231
232     if (!(pTask = TASK_GetCurrent())) return 0;
233     sel = pTask->hCSAlias;
234     pThunk = (THUNKS *)&pTask->thunks;
235     base = (char *)pThunk - (char *)pTask;
236     while (sel && (sel != HIWORD(thunk)))
237     {
238         sel = pThunk->next;
239         pThunk = (THUNKS *)GlobalLock16( sel );
240         base = 0;
241     }
242     if (!sel) return FALSE;
243     *(WORD *)((BYTE *)pThunk + LOWORD(thunk) - base) = pThunk->free;
244     pThunk->free = LOWORD(thunk) - base;
245     return TRUE;
246 }
247
248
249 /***********************************************************************
250  *           TASK_Create
251  *
252  * NOTE: This routine might be called by a Win32 thread. Thus, we need
253  *       to be careful to protect global data structures. We do this
254  *       by entering the Win16Lock while linking the task into the
255  *       global task list.
256  */
257 static TDB *TASK_Create( NE_MODULE *pModule, UINT16 cmdShow, LPCSTR cmdline, BYTE len )
258 {
259     HTASK16 hTask;
260     TDB *pTask;
261     FARPROC16 proc;
262     char curdir[MAX_PATH];
263     HMODULE16 hModule = pModule ? pModule->self : 0;
264
265       /* Allocate the task structure */
266
267     hTask = GlobalAlloc16( GMEM_FIXED | GMEM_ZEROINIT, sizeof(TDB) );
268     if (!hTask) return NULL;
269     pTask = TASK_GetPtr( hTask );
270     FarSetOwner16( hTask, hModule );
271
272     /* Fill the task structure */
273
274     pTask->hSelf = hTask;
275
276     pTask->version       = pModule ? pModule->ne_expver : 0x0400;
277     pTask->hModule       = hModule;
278     pTask->hParent       = GetCurrentTask();
279     pTask->magic         = TDB_MAGIC;
280     pTask->nCmdShow      = cmdShow;
281
282     GetCurrentDirectoryA( sizeof(curdir), curdir );
283     GetShortPathNameA( curdir, curdir, sizeof(curdir) );
284     pTask->curdrive = (curdir[0] - 'A') | 0x80;
285     lstrcpynA( pTask->curdir, curdir + 2, sizeof(pTask->curdir) );
286
287       /* Create the thunks block */
288
289     TASK_CreateThunks( hTask, (char *)&pTask->thunks - (char *)pTask, 7 );
290
291       /* Copy the module name */
292
293     if (hModule)
294     {
295         char name[sizeof(pTask->module_name)+1];
296         size_t len;
297         GetModuleName16( hModule, name, sizeof(name) );
298         len = strlen(name) + 1;
299         memcpy(pTask->module_name, name, min(len,sizeof(pTask->module_name)));
300         pTask->compat_flags = GetProfileIntA( "Compatibility", name, 0 );
301     }
302
303       /* Allocate a selector for the PDB */
304
305     pTask->hPDB = GLOBAL_CreateBlock( GMEM_FIXED, &pTask->pdb, sizeof(PDB16),
306                                       hModule, WINE_LDT_FLAGS_DATA );
307
308       /* Fill the PDB */
309
310     pTask->pdb.int20 = 0x20cd;
311     pTask->pdb.dispatcher[0] = 0x9a;  /* ljmp */
312     proc = GetProcAddress16( GetModuleHandle16("KERNEL"), "DOS3Call" );
313     memcpy( &pTask->pdb.dispatcher[1], &proc, sizeof(proc) );
314     pTask->pdb.savedint22 = 0;
315     pTask->pdb.savedint23 = 0;
316     pTask->pdb.savedint24 = 0;
317     pTask->pdb.fileHandlesPtr =
318         MAKESEGPTR( GlobalHandleToSel16(pTask->hPDB), (int)&((PDB16 *)0)->fileHandles );
319     pTask->pdb.hFileHandles = 0;
320     memset( pTask->pdb.fileHandles, 0xff, sizeof(pTask->pdb.fileHandles) );
321     /* FIXME: should we make a copy of the environment? */
322     pTask->pdb.environment    = SELECTOROF(GetDOSEnvironment16());
323     pTask->pdb.nbFiles        = 20;
324
325     /* Fill the command line */
326
327     if (!cmdline)
328     {
329         cmdline = GetCommandLineA();
330         /* remove the first word (program name) */
331         if (*cmdline == '"')
332             if (!(cmdline = strchr( cmdline+1, '"' ))) cmdline = GetCommandLineA();
333         while (*cmdline && (*cmdline != ' ') && (*cmdline != '\t')) cmdline++;
334         while ((*cmdline == ' ') || (*cmdline == '\t')) cmdline++;
335         len = strlen(cmdline);
336     }
337     if (len >= sizeof(pTask->pdb.cmdLine)) len = sizeof(pTask->pdb.cmdLine)-1;
338     pTask->pdb.cmdLine[0] = len;
339     memcpy( pTask->pdb.cmdLine + 1, cmdline, len );
340     /* pTask->pdb.cmdLine[len+1] = 0; */
341
342     TRACE("cmdline='%.*s' task=%04x\n", len, cmdline, hTask );
343
344       /* Allocate a code segment alias for the TDB */
345
346     pTask->hCSAlias = GLOBAL_CreateBlock( GMEM_FIXED, (void *)pTask,
347                                           sizeof(TDB), pTask->hPDB, WINE_LDT_FLAGS_CODE );
348
349       /* Default DTA overwrites command line */
350
351     pTask->dta = MAKESEGPTR( pTask->hPDB, (int)&pTask->pdb.cmdLine - (int)&pTask->pdb );
352
353     /* Create scheduler event for 16-bit tasks */
354
355     if ( !(pTask->flags & TDBF_WIN32) )
356         NtCreateEvent( &pTask->hEvent, EVENT_ALL_ACCESS, NULL, TRUE, FALSE );
357
358     if (!initial_task) initial_task = hTask;
359
360     return pTask;
361 }
362
363
364 /***********************************************************************
365  *           TASK_DeleteTask
366  */
367 static void TASK_DeleteTask( HTASK16 hTask )
368 {
369     TDB *pTask;
370     HGLOBAL16 hPDB;
371
372     if (!(pTask = TASK_GetPtr( hTask ))) return;
373     hPDB = pTask->hPDB;
374
375     pTask->magic = 0xdead; /* invalidate signature */
376
377     /* Free the selector aliases */
378
379     GLOBAL_FreeBlock( pTask->hCSAlias );
380     GLOBAL_FreeBlock( pTask->hPDB );
381
382     /* Free the task module */
383
384     FreeModule16( pTask->hModule );
385
386     /* Free the task structure itself */
387
388     GlobalFree16( hTask );
389
390     /* Free all memory used by this task (including the 32-bit stack, */
391     /* the environment block and the thunk segments). */
392
393     GlobalFreeAll16( hPDB );
394 }
395
396
397 /***********************************************************************
398  *           TASK_CreateMainTask
399  *
400  * Create a task for the main (32-bit) process.
401  */
402 void TASK_CreateMainTask(void)
403 {
404     TDB *pTask;
405     STARTUPINFOA startup_info;
406     UINT cmdShow = 1; /* SW_SHOWNORMAL but we don't want to include winuser.h here */
407
408     GetStartupInfoA( &startup_info );
409     if (startup_info.dwFlags & STARTF_USESHOWWINDOW) cmdShow = startup_info.wShowWindow;
410     pTask = TASK_Create( NULL, cmdShow, NULL, 0 );
411     if (!pTask)
412     {
413         ERR("could not create task for main process\n");
414         ExitProcess(1);
415     }
416
417     pTask->flags        |= TDBF_WIN32;
418     pTask->hInstance     = 0;
419     pTask->hPrevInstance = 0;
420     pTask->teb           = NtCurrentTeb();
421
422     /* Add the task to the linked list */
423     /* (no need to get the win16 lock, we are the only thread at this point) */
424     TASK_LinkTask( pTask->hSelf );
425     main_task = pTask->hSelf;
426 }
427
428
429 /* allocate the win16 TIB for a new 16-bit task */
430 static WIN16_SUBSYSTEM_TIB *allocate_win16_tib( TDB *pTask )
431 {
432     WCHAR path[MAX_PATH];
433     WIN16_SUBSYSTEM_TIB *tib;
434     UNICODE_STRING *curdir;
435     NE_MODULE *pModule = NE_GetPtr( pTask->hModule );
436
437     if (!(tib = HeapAlloc( GetProcessHeap(), 0, sizeof(*tib) ))) return NULL;
438     MultiByteToWideChar( CP_ACP, 0, NE_MODULE_NAME(pModule), -1, path, MAX_PATH );
439     GetLongPathNameW( path, path, MAX_PATH );
440     if (RtlCreateUnicodeString( &tib->exe_str, path )) tib->exe_name = &tib->exe_str;
441     else tib->exe_name = NULL;
442
443     RtlAcquirePebLock();
444     curdir = &NtCurrentTeb()->Peb->ProcessParameters->CurrentDirectory.DosPath;
445     tib->curdir.DosPath.MaximumLength = sizeof(tib->curdir_buffer);
446     tib->curdir.DosPath.Length = min( curdir->Length, tib->curdir.DosPath.MaximumLength-sizeof(WCHAR) );
447     tib->curdir.DosPath.Buffer = tib->curdir_buffer;
448     tib->curdir.Handle = 0;
449     memcpy( tib->curdir_buffer, curdir->Buffer, tib->curdir.DosPath.Length );
450     tib->curdir_buffer[tib->curdir.DosPath.Length/sizeof(WCHAR)] = 0;
451     RtlReleasePebLock();
452     return tib;
453 }
454
455 /* startup routine for a new 16-bit thread */
456 static DWORD CALLBACK task_start( LPVOID p )
457 {
458     TDB *pTask = (TDB *)p;
459     DWORD ret;
460
461     kernel_get_thread_data()->htask16 = pTask->hSelf;
462     NtCurrentTeb()->Tib.SubSystemTib = allocate_win16_tib( pTask );
463
464     _EnterWin16Lock();
465     TASK_LinkTask( pTask->hSelf );
466     pTask->teb = NtCurrentTeb();
467     ret = NE_StartTask();
468     _LeaveWin16Lock();
469     return ret;
470 }
471
472
473 /***********************************************************************
474  *           TASK_SpawnTask
475  *
476  * Spawn a new 16-bit task.
477  */
478 HTASK16 TASK_SpawnTask( NE_MODULE *pModule, WORD cmdShow,
479                         LPCSTR cmdline, BYTE len, HANDLE *hThread )
480 {
481     TDB *pTask;
482
483     if (!(pTask = TASK_Create( pModule, cmdShow, cmdline, len ))) return 0;
484     if (!(*hThread = CreateThread( NULL, 0, task_start, pTask, 0, NULL )))
485     {
486         TASK_DeleteTask( pTask->hSelf );
487         return 0;
488     }
489     return pTask->hSelf;
490 }
491
492
493 /***********************************************************************
494  *           TASK_GetTaskFromThread
495  */
496 HTASK16 TASK_GetTaskFromThread( DWORD thread )
497 {
498     TDB *p = TASK_GetPtr( hFirstTask );
499     while (p)
500     {
501         if (p->teb->ClientId.UniqueThread == (HANDLE)thread) return p->hSelf;
502         p = TASK_GetPtr( p->hNext );
503     }
504     return 0;
505 }
506
507
508 /***********************************************************************
509  *           TASK_CallTaskSignalProc
510  */
511 static void TASK_CallTaskSignalProc( UINT16 uCode, HANDLE16 hTaskOrModule )
512 {
513     WORD args[5];
514     TDB *pTask = TASK_GetCurrent();
515
516     if ( !pTask || !pTask->userhandler ) return;
517
518     args[4] = hTaskOrModule;
519     args[3] = uCode;
520     args[2] = 0;
521     args[1] = pTask->hInstance;
522     args[0] = pTask->hQueue;
523     WOWCallback16Ex( (DWORD)pTask->userhandler, WCB16_PASCAL, sizeof(args), args, NULL );
524 }
525
526
527 /***********************************************************************
528  *           TASK_ExitTask
529  */
530 void TASK_ExitTask(void)
531 {
532     WIN16_SUBSYSTEM_TIB *tib;
533     TDB *pTask;
534     DWORD lockCount;
535
536     /* Enter the Win16Lock to protect global data structures */
537     _EnterWin16Lock();
538
539     pTask = TASK_GetCurrent();
540     if ( !pTask )
541     {
542         _LeaveWin16Lock();
543         return;
544     }
545
546     TRACE("Killing task %04x\n", pTask->hSelf );
547
548     /* Perform USER cleanup */
549
550     TASK_CallTaskSignalProc( USIG16_TERMINATION, pTask->hSelf );
551
552     /* Remove the task from the list to be sure we never switch back to it */
553     TASK_UnlinkTask( pTask->hSelf );
554
555     if (!nTaskCount || (nTaskCount == 1 && hFirstTask == initial_task))
556     {
557         TRACE("this is the last task, exiting\n" );
558         ExitKernel16();
559     }
560
561     pTask->nEvents = 0;
562
563     if ( hLockedTask == pTask->hSelf )
564         hLockedTask = 0;
565
566     TASK_DeleteTask( pTask->hSelf );
567
568     if ((tib = NtCurrentTeb()->Tib.SubSystemTib))
569     {
570         if (tib->exe_name) RtlFreeUnicodeString( tib->exe_name );
571         HeapFree( GetProcessHeap(), 0, tib );
572         NtCurrentTeb()->Tib.SubSystemTib = NULL;
573     }
574
575     /* ... and completely release the Win16Lock, just in case. */
576     ReleaseThunkLock( &lockCount );
577 }
578
579
580 /***********************************************************************
581  *           ExitKernel (KERNEL.2)
582  *
583  * Clean-up everything and exit the Wine process.
584  */
585 void WINAPI ExitKernel16(void)
586 {
587     WriteOutProfiles16();
588     TerminateProcess( GetCurrentProcess(), 0 );
589 }
590
591
592 /***********************************************************************
593  *           InitTask  (KERNEL.91)
594  *
595  * Called by the application startup code.
596  */
597 void WINAPI InitTask16( CONTEXT86 *context )
598 {
599     TDB *pTask;
600     INSTANCEDATA *pinstance;
601     SEGPTR ptr;
602
603     context->Eax = 0;
604     if (!(pTask = TASK_GetCurrent())) return;
605
606     /* Note: we need to trust that BX/CX contain the stack/heap sizes,
607        as some apps, notably Visual Basic apps, *modify* the heap/stack
608        size of the instance data segment before calling InitTask() */
609
610     /* Initialize the INSTANCEDATA structure */
611     pinstance = MapSL( MAKESEGPTR(CURRENT_DS, 0) );
612     pinstance->stackmin    = OFFSETOF(NtCurrentTeb()->WOW32Reserved) + sizeof( STACK16FRAME );
613     pinstance->stackbottom = pinstance->stackmin; /* yup, that's right. Confused me too. */
614     pinstance->stacktop    = ( pinstance->stackmin > LOWORD(context->Ebx) ?
615                                pinstance->stackmin - LOWORD(context->Ebx) : 0 ) + 150;
616
617     /* Initialize the local heap */
618     if (LOWORD(context->Ecx))
619         LocalInit16( GlobalHandleToSel16(pTask->hInstance), 0, LOWORD(context->Ecx) );
620
621     /* Initialize implicitly loaded DLLs */
622     NE_InitializeDLLs( pTask->hModule );
623     NE_DllProcessAttach( pTask->hModule );
624
625     /* Registers on return are:
626      * ax     1 if OK, 0 on error
627      * cx     stack limit in bytes
628      * dx     cmdShow parameter
629      * si     instance handle of the previous instance
630      * di     instance handle of the new task
631      * es:bx  pointer to command line inside PSP
632      *
633      * 0 (=%bp) is pushed on the stack
634      */
635     ptr = stack16_push( sizeof(WORD) );
636     *(WORD *)MapSL(ptr) = 0;
637     context->Esp -= 2;
638
639     context->Eax = 1;
640
641     if (!pTask->pdb.cmdLine[0]) context->Ebx = 0x80;
642     else
643     {
644         LPBYTE p = &pTask->pdb.cmdLine[1];
645         while ((*p == ' ') || (*p == '\t')) p++;
646         context->Ebx = 0x80 + (p - pTask->pdb.cmdLine);
647     }
648     context->Ecx   = pinstance->stacktop;
649     context->Edx   = pTask->nCmdShow;
650     context->Esi   = (DWORD)pTask->hPrevInstance;
651     context->Edi   = (DWORD)pTask->hInstance;
652     context->SegEs = (WORD)pTask->hPDB;
653 }
654
655
656 /***********************************************************************
657  *           WaitEvent  (KERNEL.30)
658  */
659 BOOL16 WINAPI WaitEvent16( HTASK16 hTask )
660 {
661     TDB *pTask;
662
663     if (!hTask) hTask = GetCurrentTask();
664     pTask = TASK_GetPtr( hTask );
665
666     if (pTask->flags & TDBF_WIN32)
667     {
668         FIXME("called for Win32 thread (%04lx)!\n", GetCurrentThreadId());
669         return TRUE;
670     }
671
672     if (pTask->nEvents > 0)
673     {
674         pTask->nEvents--;
675         return FALSE;
676     }
677
678     if (pTask->teb == NtCurrentTeb())
679     {
680         DWORD lockCount;
681
682         NtResetEvent( pTask->hEvent, NULL );
683         ReleaseThunkLock( &lockCount );
684         SYSLEVEL_CheckNotLevel( 1 );
685         WaitForSingleObject( pTask->hEvent, INFINITE );
686         RestoreThunkLock( lockCount );
687         if (pTask->nEvents > 0) pTask->nEvents--;
688     }
689     else FIXME("for other task %04x cur=%04x\n",pTask->hSelf,GetCurrentTask());
690
691     return TRUE;
692 }
693
694
695 /***********************************************************************
696  *           PostEvent  (KERNEL.31)
697  */
698 void WINAPI PostEvent16( HTASK16 hTask )
699 {
700     TDB *pTask;
701
702     if (!hTask) hTask = GetCurrentTask();
703     if (!(pTask = TASK_GetPtr( hTask ))) return;
704
705     if (pTask->flags & TDBF_WIN32)
706     {
707         FIXME("called for Win32 thread (%04lx)!\n", (DWORD)pTask->teb->ClientId.UniqueThread );
708         return;
709     }
710
711     pTask->nEvents++;
712
713     if (pTask->nEvents == 1) NtSetEvent( pTask->hEvent, NULL );
714 }
715
716
717 /***********************************************************************
718  *           SetPriority  (KERNEL.32)
719  */
720 void WINAPI SetPriority16( HTASK16 hTask, INT16 delta )
721 {
722     TDB *pTask;
723     INT16 newpriority;
724
725     if (!hTask) hTask = GetCurrentTask();
726     if (!(pTask = TASK_GetPtr( hTask ))) return;
727     newpriority = pTask->priority + delta;
728     if (newpriority < -32) newpriority = -32;
729     else if (newpriority > 15) newpriority = 15;
730
731     pTask->priority = newpriority + 1;
732     TASK_UnlinkTask( pTask->hSelf );
733     TASK_LinkTask( pTask->hSelf );
734     pTask->priority--;
735 }
736
737
738 /***********************************************************************
739  *           LockCurrentTask  (KERNEL.33)
740  */
741 HTASK16 WINAPI LockCurrentTask16( BOOL16 bLock )
742 {
743     if (bLock) hLockedTask = GetCurrentTask();
744     else hLockedTask = 0;
745     return hLockedTask;
746 }
747
748
749 /***********************************************************************
750  *           IsTaskLocked  (KERNEL.122)
751  */
752 HTASK16 WINAPI IsTaskLocked16(void)
753 {
754     return hLockedTask;
755 }
756
757
758 /***********************************************************************
759  *           OldYield  (KERNEL.117)
760  */
761 void WINAPI OldYield16(void)
762 {
763    DWORD count;
764
765    ReleaseThunkLock(&count);
766    RestoreThunkLock(count);
767 }
768
769 /***********************************************************************
770  *           WIN32_OldYield  (KERNEL.447)
771  */
772 void WINAPI WIN32_OldYield16(void)
773 {
774    DWORD count;
775
776    ReleaseThunkLock(&count);
777    RestoreThunkLock(count);
778 }
779
780 /***********************************************************************
781  *           DirectedYield  (KERNEL.150)
782  */
783 void WINAPI DirectedYield16( HTASK16 hTask )
784 {
785     OldYield16();
786 }
787
788 /***********************************************************************
789  *           Yield  (KERNEL.29)
790  */
791 void WINAPI Yield16(void)
792 {
793     TDB *pCurTask = TASK_GetCurrent();
794
795     if (pCurTask && pCurTask->hQueue)
796     {
797         HMODULE mod = GetModuleHandleA( "user32.dll" );
798         if (mod)
799         {
800             FARPROC proc = GetProcAddress( mod, "UserYield16" );
801             if (proc)
802             {
803                 proc();
804                 return;
805             }
806         }
807     }
808     OldYield16();
809 }
810
811 /***********************************************************************
812  *           KERNEL_490  (KERNEL.490)
813  */
814 HTASK16 WINAPI KERNEL_490( HTASK16 someTask )
815 {
816     if ( !someTask ) return 0;
817
818     FIXME("(%04x): stub\n", someTask );
819     return 0;
820 }
821
822 /***********************************************************************
823  *           MakeProcInstance  (KERNEL.51)
824  */
825 FARPROC16 WINAPI MakeProcInstance16( FARPROC16 func, HANDLE16 hInstance )
826 {
827     BYTE *thunk,*lfunc;
828     SEGPTR thunkaddr;
829     WORD hInstanceSelector;
830
831     hInstanceSelector = GlobalHandleToSel16(hInstance);
832
833     TRACE("(%08lx, %04x);\n", (DWORD)func, hInstance);
834
835     if (!HIWORD(func)) {
836       /* Win95 actually protects via SEH, but this is better for debugging */
837       WARN("Ouch ! Called with invalid func 0x%08lx !\n", (DWORD)func);
838       return (FARPROC16)0;
839     }
840
841     if ( (GlobalHandleToSel16(CURRENT_DS) != hInstanceSelector)
842       && (hInstance != 0)
843       && (hInstance != 0xffff) )
844     {
845         /* calling MPI with a foreign DSEG is invalid ! */
846         WARN("Problem with hInstance? Got %04x, using %04x instead\n",
847                    hInstance,CURRENT_DS);
848     }
849
850     /* Always use the DSEG that MPI was entered with.
851      * We used to set hInstance to GetTaskDS16(), but this should be wrong
852      * as CURRENT_DS provides the DSEG value we need.
853      * ("calling" DS, *not* "task" DS !) */
854     hInstanceSelector = CURRENT_DS;
855     hInstance = GlobalHandle16(hInstanceSelector);
856
857     /* no thunking for DLLs */
858     if (NE_GetPtr(FarGetOwner16(hInstance))->ne_flags & NE_FFLAGS_LIBMODULE)
859         return func;
860
861     thunkaddr = TASK_AllocThunk();
862     if (!thunkaddr) return (FARPROC16)0;
863     thunk = MapSL( thunkaddr );
864     lfunc = MapSL( (SEGPTR)func );
865
866     TRACE("(%08lx,%04x): got thunk %08lx\n",
867           (DWORD)func, hInstance, (DWORD)thunkaddr );
868     if (((lfunc[0]==0x8c) && (lfunc[1]==0xd8)) || /* movw %ds, %ax */
869         ((lfunc[0]==0x1e) && (lfunc[1]==0x58))    /* pushw %ds, popw %ax */
870     ) {
871         WARN("This was the (in)famous \"thunk useless\" warning. We thought we have to overwrite with nop;nop;, but this isn't true.\n");
872     }
873
874     *thunk++ = 0xb8;    /* movw instance, %ax */
875     *thunk++ = (BYTE)(hInstanceSelector & 0xff);
876     *thunk++ = (BYTE)(hInstanceSelector >> 8);
877     *thunk++ = 0xea;    /* ljmp func */
878     *(DWORD *)thunk = (DWORD)func;
879     return (FARPROC16)thunkaddr;
880     /* CX reg indicates if thunkaddr != NULL, implement if needed */
881 }
882
883
884 /***********************************************************************
885  *           FreeProcInstance  (KERNEL.52)
886  */
887 void WINAPI FreeProcInstance16( FARPROC16 func )
888 {
889     TRACE("(%08lx)\n", (DWORD)func );
890     TASK_FreeThunk( (SEGPTR)func );
891 }
892
893 /**********************************************************************
894  *          TASK_GetCodeSegment
895  *
896  * Helper function for GetCodeHandle/GetCodeInfo: Retrieve the module
897  * and logical segment number of a given code segment.
898  *
899  * 'proc' either *is* already a pair of module handle and segment number,
900  * in which case there's nothing to do.  Otherwise, it is a pointer to
901  * a function, and we need to retrieve the code segment.  If the pointer
902  * happens to point to a thunk, we'll retrieve info about the code segment
903  * where the function pointed to by the thunk resides, not the thunk itself.
904  *
905  * FIXME: if 'proc' is a SNOOP16 return stub, we should retrieve info about
906  *        the function the snoop code will return to ...
907  *
908  */
909 static BOOL TASK_GetCodeSegment( FARPROC16 proc, NE_MODULE **ppModule,
910                                  SEGTABLEENTRY **ppSeg, int *pSegNr )
911 {
912     NE_MODULE *pModule = NULL;
913     SEGTABLEENTRY *pSeg = NULL;
914     int segNr=0;
915
916     /* Try pair of module handle / segment number */
917     pModule = (NE_MODULE *) GlobalLock16( HIWORD( proc ) );
918     if ( pModule && pModule->ne_magic == IMAGE_OS2_SIGNATURE )
919     {
920         segNr = LOWORD( proc );
921         if ( segNr && segNr <= pModule->ne_cseg )
922             pSeg = NE_SEG_TABLE( pModule ) + segNr-1;
923     }
924
925     /* Try thunk or function */
926     else
927     {
928         BYTE *thunk = MapSL( (SEGPTR)proc );
929         WORD selector;
930
931         if ((thunk[0] == 0xb8) && (thunk[3] == 0xea))
932             selector = thunk[6] + (thunk[7] << 8);
933         else
934             selector = HIWORD( proc );
935
936         pModule = NE_GetPtr( GlobalHandle16( selector ) );
937         pSeg = pModule? NE_SEG_TABLE( pModule ) : NULL;
938
939         if ( pModule )
940             for ( segNr = 1; segNr <= pModule->ne_cseg; segNr++, pSeg++ )
941                 if ( GlobalHandleToSel16(pSeg->hSeg) == selector )
942                     break;
943
944         if ( pModule && segNr > pModule->ne_cseg )
945             pSeg = NULL;
946     }
947
948     /* Abort if segment not found */
949
950     if ( !pModule || !pSeg )
951         return FALSE;
952
953     /* Return segment data */
954
955     if ( ppModule ) *ppModule = pModule;
956     if ( ppSeg    ) *ppSeg    = pSeg;
957     if ( pSegNr   ) *pSegNr   = segNr;
958
959     return TRUE;
960 }
961
962 /**********************************************************************
963  *          GetCodeHandle    (KERNEL.93)
964  */
965 HANDLE16 WINAPI GetCodeHandle16( FARPROC16 proc )
966 {
967     SEGTABLEENTRY *pSeg;
968
969     if ( !TASK_GetCodeSegment( proc, NULL, &pSeg, NULL ) )
970         return (HANDLE16)0;
971
972     return pSeg->hSeg;
973 }
974
975 /**********************************************************************
976  *          GetCodeInfo    (KERNEL.104)
977  */
978 BOOL16 WINAPI GetCodeInfo16( FARPROC16 proc, SEGINFO *segInfo )
979 {
980     NE_MODULE *pModule;
981     SEGTABLEENTRY *pSeg;
982     int segNr;
983
984     if ( !TASK_GetCodeSegment( proc, &pModule, &pSeg, &segNr ) )
985         return FALSE;
986
987     /* Fill in segment information */
988
989     segInfo->offSegment = pSeg->filepos;
990     segInfo->cbSegment  = pSeg->size;
991     segInfo->flags      = pSeg->flags;
992     segInfo->cbAlloc    = pSeg->minsize;
993     segInfo->h          = pSeg->hSeg;
994     segInfo->alignShift = pModule->ne_align;
995
996     if ( segNr == pModule->ne_autodata )
997         segInfo->cbAlloc += pModule->ne_heap + pModule->ne_stack;
998
999     /* Return module handle in %es */
1000
1001     CURRENT_STACK16->es = GlobalHandleToSel16( pModule->self );
1002
1003     return TRUE;
1004 }
1005
1006
1007 /**********************************************************************
1008  *          DefineHandleTable    (KERNEL.94)
1009  */
1010 BOOL16 WINAPI DefineHandleTable16( WORD wOffset )
1011 {
1012     FIXME("(%04x): stub ?\n", wOffset);
1013     return TRUE;
1014 }
1015
1016
1017 /***********************************************************************
1018  *           SetTaskQueue  (KERNEL.34)
1019  */
1020 HQUEUE16 WINAPI SetTaskQueue16( HTASK16 hTask, HQUEUE16 hQueue )
1021 {
1022     FIXME( "stub, should not get called\n" );
1023     return 0xbeef;
1024 }
1025
1026
1027 /***********************************************************************
1028  *           GetTaskQueue  (KERNEL.35)
1029  */
1030 HQUEUE16 WINAPI GetTaskQueue16( HTASK16 hTask )
1031 {
1032     FIXME( "stub, should not get called\n" );
1033     return 0xbeef;
1034 }
1035
1036 /***********************************************************************
1037  *           SetThreadQueue  (KERNEL.463)
1038  */
1039 HQUEUE16 WINAPI SetThreadQueue16( DWORD thread, HQUEUE16 hQueue )
1040 {
1041     FIXME( "stub, should not get called\n" );
1042     return 0xbeef;
1043 }
1044
1045 /***********************************************************************
1046  *           GetThreadQueue  (KERNEL.464)
1047  */
1048 HQUEUE16 WINAPI GetThreadQueue16( DWORD thread )
1049 {
1050     FIXME( "stub, should not get called\n" );
1051     return 0xbeef;
1052 }
1053
1054 /***********************************************************************
1055  *           SetFastQueue  (KERNEL.624)
1056  */
1057 VOID WINAPI SetFastQueue16( DWORD thread, HQUEUE16 hQueue )
1058 {
1059     FIXME( "stub, should not get called\n" );
1060 }
1061
1062 /***********************************************************************
1063  *           GetFastQueue  (KERNEL.625)
1064  */
1065 HQUEUE16 WINAPI GetFastQueue16( void )
1066 {
1067     FIXME( "stub, should not get called\n" );
1068     return 0xbeef;
1069 }
1070
1071 /***********************************************************************
1072  *           SwitchStackTo   (KERNEL.108)
1073  */
1074 void WINAPI SwitchStackTo16( WORD seg, WORD ptr, WORD top )
1075 {
1076     STACK16FRAME *oldFrame, *newFrame;
1077     INSTANCEDATA *pData;
1078     UINT16 copySize;
1079
1080     if (!(pData = (INSTANCEDATA *)GlobalLock16( seg ))) return;
1081     TRACE("old=%04x:%04x new=%04x:%04x\n",
1082           SELECTOROF( NtCurrentTeb()->WOW32Reserved ),
1083           OFFSETOF( NtCurrentTeb()->WOW32Reserved ), seg, ptr );
1084
1085     /* Save the old stack */
1086
1087     oldFrame = CURRENT_STACK16;
1088     /* pop frame + args and push bp */
1089     pData->old_ss_sp   = (SEGPTR)NtCurrentTeb()->WOW32Reserved + sizeof(STACK16FRAME)
1090                            + 2 * sizeof(WORD);
1091     *(WORD *)MapSL(pData->old_ss_sp) = oldFrame->bp;
1092     pData->stacktop    = top;
1093     pData->stackmin    = ptr;
1094     pData->stackbottom = ptr;
1095
1096     /* Switch to the new stack */
1097
1098     /* Note: we need to take the 3 arguments into account; otherwise,
1099      * the stack will underflow upon return from this function.
1100      */
1101     copySize = oldFrame->bp - OFFSETOF(pData->old_ss_sp);
1102     copySize += 3 * sizeof(WORD) + sizeof(STACK16FRAME);
1103     NtCurrentTeb()->WOW32Reserved = (void *)MAKESEGPTR( seg, ptr - copySize );
1104     newFrame = CURRENT_STACK16;
1105
1106     /* Copy the stack frame and the local variables to the new stack */
1107
1108     memmove( newFrame, oldFrame, copySize );
1109     newFrame->bp = ptr;
1110     *(WORD *)MapSL( MAKESEGPTR( seg, ptr ) ) = 0;  /* clear previous bp */
1111 }
1112
1113
1114 /***********************************************************************
1115  *           SwitchStackBack   (KERNEL.109)
1116  */
1117 void WINAPI SwitchStackBack16( CONTEXT86 *context )
1118 {
1119     STACK16FRAME *oldFrame, *newFrame;
1120     INSTANCEDATA *pData;
1121
1122     if (!(pData = (INSTANCEDATA *)GlobalLock16(SELECTOROF(NtCurrentTeb()->WOW32Reserved))))
1123         return;
1124     if (!pData->old_ss_sp)
1125     {
1126         WARN("No previous SwitchStackTo\n" );
1127         return;
1128     }
1129     TRACE("restoring stack %04x:%04x\n",
1130           SELECTOROF(pData->old_ss_sp), OFFSETOF(pData->old_ss_sp) );
1131
1132     oldFrame = CURRENT_STACK16;
1133
1134     /* Pop bp from the previous stack */
1135
1136     context->Ebp = (context->Ebp & ~0xffff) | *(WORD *)MapSL(pData->old_ss_sp);
1137     pData->old_ss_sp += sizeof(WORD);
1138
1139     /* Switch back to the old stack */
1140
1141     NtCurrentTeb()->WOW32Reserved = (void *)(pData->old_ss_sp - sizeof(STACK16FRAME));
1142     context->SegSs = SELECTOROF(pData->old_ss_sp);
1143     context->Esp   = OFFSETOF(pData->old_ss_sp) - sizeof(DWORD); /*ret addr*/
1144     pData->old_ss_sp = 0;
1145
1146     /* Build a stack frame for the return */
1147
1148     newFrame = CURRENT_STACK16;
1149     newFrame->frame32     = oldFrame->frame32;
1150     newFrame->module_cs   = oldFrame->module_cs;
1151     newFrame->callfrom_ip = oldFrame->callfrom_ip;
1152     newFrame->entry_ip    = oldFrame->entry_ip;
1153 }
1154
1155
1156 /***********************************************************************
1157  *           GetTaskQueueDS  (KERNEL.118)
1158  */
1159 void WINAPI GetTaskQueueDS16(void)
1160 {
1161     CURRENT_STACK16->ds = GlobalHandleToSel16( GetTaskQueue16(0) );
1162 }
1163
1164
1165 /***********************************************************************
1166  *           GetTaskQueueES  (KERNEL.119)
1167  */
1168 void WINAPI GetTaskQueueES16(void)
1169 {
1170     CURRENT_STACK16->es = GlobalHandleToSel16( GetTaskQueue16(0) );
1171 }
1172
1173
1174 /***********************************************************************
1175  *           GetCurrentTask   (KERNEL32.@)
1176  */
1177 HTASK16 WINAPI GetCurrentTask(void)
1178 {
1179     HTASK16 ret = kernel_get_thread_data()->htask16;
1180     if (!ret) ret = main_task;
1181     return ret;
1182 }
1183
1184 /***********************************************************************
1185  *           GetCurrentTask   (KERNEL.36)
1186  */
1187 DWORD WINAPI WIN16_GetCurrentTask(void)
1188 {
1189     /* This is the version used by relay code; the first task is */
1190     /* returned in the high word of the result */
1191     return MAKELONG( GetCurrentTask(), hFirstTask );
1192 }
1193
1194
1195 /***********************************************************************
1196  *           GetCurrentPDB   (KERNEL.37)
1197  *
1198  * UNDOC: returns PSP of KERNEL in high word
1199  */
1200 DWORD WINAPI GetCurrentPDB16(void)
1201 {
1202     TDB *pTask;
1203
1204     if (!(pTask = TASK_GetCurrent())) return 0;
1205     return MAKELONG(pTask->hPDB, 0); /* FIXME */
1206 }
1207
1208
1209 /***********************************************************************
1210  *           GetCurPID   (KERNEL.157)
1211  */
1212 DWORD WINAPI GetCurPID16( DWORD unused )
1213 {
1214     return 0;
1215 }
1216
1217
1218 /***********************************************************************
1219  *           GetInstanceData   (KERNEL.54)
1220  */
1221 INT16 WINAPI GetInstanceData16( HINSTANCE16 instance, WORD buffer, INT16 len )
1222 {
1223     char *ptr = (char *)GlobalLock16( instance );
1224     if (!ptr || !len) return 0;
1225     if ((int)buffer + len >= 0x10000) len = 0x10000 - buffer;
1226     memcpy( (char *)GlobalLock16(CURRENT_DS) + buffer, ptr + buffer, len );
1227     return len;
1228 }
1229
1230
1231 /***********************************************************************
1232  *           GetExeVersion   (KERNEL.105)
1233  */
1234 WORD WINAPI GetExeVersion16(void)
1235 {
1236     TDB *pTask;
1237
1238     if (!(pTask = TASK_GetCurrent())) return 0;
1239     return pTask->version;
1240 }
1241
1242
1243 /***********************************************************************
1244  *           SetErrorMode   (KERNEL.107)
1245  */
1246 UINT16 WINAPI SetErrorMode16( UINT16 mode )
1247 {
1248     TDB *pTask;
1249     if (!(pTask = TASK_GetCurrent())) return 0;
1250     pTask->error_mode = mode;
1251     return SetErrorMode( mode );
1252 }
1253
1254
1255 /***********************************************************************
1256  *           GetNumTasks   (KERNEL.152)
1257  */
1258 UINT16 WINAPI GetNumTasks16(void)
1259 {
1260     return nTaskCount;
1261 }
1262
1263
1264 /***********************************************************************
1265  *           GetTaskDS   (KERNEL.155)
1266  *
1267  * Note: this function apparently returns a DWORD with LOWORD == HIWORD.
1268  * I don't think we need to bother with this.
1269  */
1270 HINSTANCE16 WINAPI GetTaskDS16(void)
1271 {
1272     TDB *pTask;
1273
1274     if (!(pTask = TASK_GetCurrent())) return 0;
1275     return GlobalHandleToSel16(pTask->hInstance);
1276 }
1277
1278 /***********************************************************************
1279  *           GetDummyModuleHandleDS   (KERNEL.602)
1280  */
1281 WORD WINAPI GetDummyModuleHandleDS16(void)
1282 {
1283     TDB *pTask;
1284     WORD selector;
1285
1286     if (!(pTask = TASK_GetCurrent())) return 0;
1287     if (!(pTask->flags & TDBF_WIN32)) return 0;
1288     selector = GlobalHandleToSel16( pTask->hModule );
1289     CURRENT_DS = selector;
1290     return selector;
1291 }
1292
1293 /***********************************************************************
1294  *           IsTask   (KERNEL.320)
1295  */
1296 BOOL16 WINAPI IsTask16( HTASK16 hTask )
1297 {
1298     TDB *pTask;
1299
1300     if (!(pTask = TASK_GetPtr( hTask ))) return FALSE;
1301     if (GlobalSize16( hTask ) < sizeof(TDB)) return FALSE;
1302     return (pTask->magic == TDB_MAGIC);
1303 }
1304
1305
1306 /***********************************************************************
1307  *           IsWinOldApTask   (KERNEL.158)
1308  */
1309 BOOL16 WINAPI IsWinOldApTask16( HTASK16 hTask )
1310 {
1311     /* should return bit 0 of byte 0x48 in PSP */
1312     return FALSE;
1313 }
1314
1315 /***********************************************************************
1316  *           SetTaskSignalProc   (KERNEL.38)
1317  */
1318 FARPROC16 WINAPI SetTaskSignalProc( HTASK16 hTask, FARPROC16 proc )
1319 {
1320     TDB *pTask;
1321     FARPROC16 oldProc;
1322
1323     if (!hTask) hTask = GetCurrentTask();
1324     if (!(pTask = TASK_GetPtr( hTask ))) return NULL;
1325     oldProc = pTask->userhandler;
1326     pTask->userhandler = proc;
1327     return oldProc;
1328 }
1329
1330 /***********************************************************************
1331  *           SetSigHandler   (KERNEL.140)
1332  */
1333 WORD WINAPI SetSigHandler16( FARPROC16 newhandler, FARPROC16* oldhandler,
1334                            UINT16 *oldmode, UINT16 newmode, UINT16 flag )
1335 {
1336     FIXME("(%p,%p,%p,%d,%d), unimplemented.\n",
1337           newhandler,oldhandler,oldmode,newmode,flag );
1338
1339     if (flag != 1) return 0;
1340     if (!newmode) newhandler = NULL;  /* Default handler */
1341     if (newmode != 4)
1342     {
1343         TDB *pTask;
1344
1345         if (!(pTask = TASK_GetCurrent())) return 0;
1346         if (oldmode) *oldmode = pTask->signal_flags;
1347         pTask->signal_flags = newmode;
1348         if (oldhandler) *oldhandler = pTask->sighandler;
1349         pTask->sighandler = newhandler;
1350     }
1351     return 0;
1352 }
1353
1354
1355 /***********************************************************************
1356  *           GlobalNotify   (KERNEL.154)
1357  *
1358  * Note that GlobalNotify does _not_ return the old NotifyProc
1359  * -- contrary to LocalNotify !!
1360  */
1361 VOID WINAPI GlobalNotify16( FARPROC16 proc )
1362 {
1363     TDB *pTask;
1364
1365     if (!(pTask = TASK_GetCurrent())) return;
1366     pTask->discardhandler = proc;
1367 }
1368
1369
1370 /***********************************************************************
1371  *           GetExePtrHelper
1372  */
1373 static inline HMODULE16 GetExePtrHelper( HANDLE16 handle, HTASK16 *hTask )
1374 {
1375     char *ptr;
1376     HANDLE16 owner;
1377
1378       /* Check for module handle */
1379
1380     if (!(ptr = GlobalLock16( handle ))) return 0;
1381     if (((NE_MODULE *)ptr)->ne_magic == IMAGE_OS2_SIGNATURE) return handle;
1382
1383       /* Search for this handle inside all tasks */
1384
1385     *hTask = hFirstTask;
1386     while (*hTask)
1387     {
1388         TDB *pTask = TASK_GetPtr( *hTask );
1389         if ((*hTask == handle) ||
1390             (pTask->hInstance == handle) ||
1391             (pTask->hQueue == handle) ||
1392             (pTask->hPDB == handle)) return pTask->hModule;
1393         *hTask = pTask->hNext;
1394     }
1395
1396       /* Check the owner for module handle */
1397
1398     owner = FarGetOwner16( handle );
1399     if (!(ptr = GlobalLock16( owner ))) return 0;
1400     if (((NE_MODULE *)ptr)->ne_magic == IMAGE_OS2_SIGNATURE) return owner;
1401
1402       /* Search for the owner inside all tasks */
1403
1404     *hTask = hFirstTask;
1405     while (*hTask)
1406     {
1407         TDB *pTask = TASK_GetPtr( *hTask );
1408         if ((*hTask == owner) ||
1409             (pTask->hInstance == owner) ||
1410             (pTask->hQueue == owner) ||
1411             (pTask->hPDB == owner)) return pTask->hModule;
1412         *hTask = pTask->hNext;
1413     }
1414
1415     return 0;
1416 }
1417
1418 /***********************************************************************
1419  *           GetExePtr   (KERNEL.133)
1420  */
1421 HMODULE16 WINAPI WIN16_GetExePtr( HANDLE16 handle )
1422 {
1423     HTASK16 hTask = 0;
1424     HMODULE16 hModule = GetExePtrHelper( handle, &hTask );
1425     STACK16FRAME *frame = CURRENT_STACK16;
1426     frame->ecx = hModule;
1427     if (hTask) frame->es = hTask;
1428     return hModule;
1429 }
1430
1431
1432 /***********************************************************************
1433  *           K228   (KERNEL.228)
1434  */
1435 HMODULE16 WINAPI GetExePtr( HANDLE16 handle )
1436 {
1437     HTASK16 hTask = 0;
1438     return GetExePtrHelper( handle, &hTask );
1439 }
1440
1441
1442 /***********************************************************************
1443  *           TaskFirst   (TOOLHELP.63)
1444  */
1445 BOOL16 WINAPI TaskFirst16( TASKENTRY *lpte )
1446 {
1447     lpte->hNext = hFirstTask;
1448     return TaskNext16( lpte );
1449 }
1450
1451
1452 /***********************************************************************
1453  *           TaskNext   (TOOLHELP.64)
1454  */
1455 BOOL16 WINAPI TaskNext16( TASKENTRY *lpte )
1456 {
1457     TDB *pTask;
1458     INSTANCEDATA *pInstData;
1459
1460     TRACE_(toolhelp)("(%p): task=%04x\n", lpte, lpte->hNext );
1461     if (!lpte->hNext) return FALSE;
1462
1463     /* make sure that task and hInstance are valid (skip initial Wine task !) */
1464     while (1) {
1465         pTask = TASK_GetPtr( lpte->hNext );
1466         if (!pTask || pTask->magic != TDB_MAGIC) return FALSE;
1467         if (pTask->hInstance)
1468             break;
1469         lpte->hNext = pTask->hNext;
1470     }
1471     pInstData = MapSL( MAKESEGPTR( GlobalHandleToSel16(pTask->hInstance), 0 ) );
1472     lpte->hTask         = lpte->hNext;
1473     lpte->hTaskParent   = pTask->hParent;
1474     lpte->hInst         = pTask->hInstance;
1475     lpte->hModule       = pTask->hModule;
1476     lpte->wSS           = SELECTOROF( pTask->teb->WOW32Reserved );
1477     lpte->wSP           = OFFSETOF( pTask->teb->WOW32Reserved );
1478     lpte->wStackTop     = pInstData->stacktop;
1479     lpte->wStackMinimum = pInstData->stackmin;
1480     lpte->wStackBottom  = pInstData->stackbottom;
1481     lpte->wcEvents      = pTask->nEvents;
1482     lpte->hQueue        = pTask->hQueue;
1483     lstrcpynA( lpte->szModule, pTask->module_name, sizeof(lpte->szModule) );
1484     lpte->wPSPOffset    = 0x100;  /*??*/
1485     lpte->hNext         = pTask->hNext;
1486     return TRUE;
1487 }
1488
1489
1490 /***********************************************************************
1491  *           TaskFindHandle   (TOOLHELP.65)
1492  */
1493 BOOL16 WINAPI TaskFindHandle16( TASKENTRY *lpte, HTASK16 hTask )
1494 {
1495     lpte->hNext = hTask;
1496     return TaskNext16( lpte );
1497 }
1498
1499
1500 typedef INT (WINAPI *MessageBoxA_funcptr)(HWND hWnd, LPCSTR text, LPCSTR title, UINT type);
1501
1502 /**************************************************************************
1503  *           FatalAppExit   (KERNEL.137)
1504  */
1505 void WINAPI FatalAppExit16( UINT16 action, LPCSTR str )
1506 {
1507     TDB *pTask = TASK_GetCurrent();
1508
1509     if (!pTask || !(pTask->error_mode & SEM_NOGPFAULTERRORBOX))
1510     {
1511         HMODULE mod = GetModuleHandleA( "user32.dll" );
1512         if (mod)
1513         {
1514             MessageBoxA_funcptr pMessageBoxA = (MessageBoxA_funcptr)GetProcAddress( mod, "MessageBoxA" );
1515             if (pMessageBoxA)
1516             {
1517                 pMessageBoxA( 0, str, NULL, MB_SYSTEMMODAL | MB_OK );
1518                 goto done;
1519             }
1520         }
1521         ERR( "%s\n", debugstr_a(str) );
1522     }
1523  done:
1524     ExitThread(0xff);
1525 }
1526
1527
1528 /***********************************************************************
1529  *           TerminateApp   (TOOLHELP.77)
1530  *
1531  * See "Undocumented Windows".
1532  */
1533 void WINAPI TerminateApp16(HTASK16 hTask, WORD wFlags)
1534 {
1535     if (hTask && hTask != GetCurrentTask())
1536     {
1537         FIXME("cannot terminate task %x\n", hTask);
1538         return;
1539     }
1540
1541     if (wFlags & NO_UAE_BOX)
1542     {
1543         UINT16 old_mode;
1544         old_mode = SetErrorMode16(0);
1545         SetErrorMode16(old_mode|SEM_NOGPFAULTERRORBOX);
1546     }
1547     FatalAppExit16( 0, NULL );
1548
1549     /* hmm, we're still alive ?? */
1550
1551     /* check undocumented flag */
1552     if (!(wFlags & 0x8000))
1553         TASK_CallTaskSignalProc( USIG16_TERMINATION, hTask );
1554
1555     /* UndocWin says to call int 0x21/0x4c exit=0xff here,
1556        but let's just call ExitThread */
1557     ExitThread(0xff);
1558 }
1559
1560
1561 /***********************************************************************
1562  *           GetAppCompatFlags   (KERNEL.354)
1563  */
1564 DWORD WINAPI GetAppCompatFlags16( HTASK16 hTask )
1565 {
1566     TDB *pTask;
1567
1568     if (!hTask) hTask = GetCurrentTask();
1569     if (!(pTask=TASK_GetPtr( hTask ))) return 0;
1570     if (GlobalSize16(hTask) < sizeof(TDB)) return 0;
1571     return pTask->compat_flags;
1572 }
1573
1574
1575 /***********************************************************************
1576  *           GetDOSEnvironment     (KERNEL.131)
1577  *
1578  * Note: the environment is allocated once, it doesn't track changes
1579  * made using the Win32 API. This shouldn't matter.
1580  *
1581  * Format of a 16-bit environment block:
1582  * ASCIIZ   string 1 (xx=yy format)
1583  * ...
1584  * ASCIIZ   string n
1585  * BYTE     0
1586  * WORD     1
1587  * ASCIIZ   program name (e.g. C:\WINDOWS\SYSTEM\KRNL386.EXE)
1588  */
1589 SEGPTR WINAPI GetDOSEnvironment16(void)
1590 {
1591     static const char ENV_program_name[] = "C:\\WINDOWS\\SYSTEM\\KRNL386.EXE";
1592     static HGLOBAL16 handle;  /* handle to the 16 bit environment */
1593
1594     if (!handle)
1595     {
1596         DWORD size;
1597         LPSTR p, env;
1598
1599         p = env = GetEnvironmentStringsA();
1600         while (*p) p += strlen(p) + 1;
1601         p++;  /* skip last null */
1602         size = (p - env) + sizeof(WORD) + sizeof(ENV_program_name);
1603         handle = GlobalAlloc16( GMEM_FIXED, size );
1604         if (handle)
1605         {
1606             WORD one = 1;
1607             LPSTR env16 = GlobalLock16( handle );
1608             memcpy( env16, env, p - env );
1609             memcpy( env16 + (p - env), &one, sizeof(one));
1610             memcpy( env16 + (p - env) + sizeof(WORD), ENV_program_name, sizeof(ENV_program_name));
1611             GlobalUnlock16( handle );
1612         }
1613         FreeEnvironmentStringsA( env );
1614     }
1615     return K32WOWGlobalLock16( handle );
1616 }