Unify startup sequence for Wine and WineLib.
[wine] / loader / task.c
1 /*
2  * Task functions
3  *
4  * Copyright 1995 Alexandre Julliard
5  */
6
7 #include <stdlib.h>
8 #include <string.h>
9 #include <assert.h>
10 #include <unistd.h>
11
12 #include "wine/winbase16.h"
13 #include "user.h"
14 #include "callback.h"
15 #include "drive.h"
16 #include "file.h"
17 #include "global.h"
18 #include "instance.h"
19 #include "message.h"
20 #include "miscemu.h"
21 #include "module.h"
22 #include "neexe.h"
23 #include "peexe.h"
24 #include "pe_image.h"
25 #include "process.h"
26 #include "queue.h"
27 #include "selectors.h"
28 #include "stackframe.h"
29 #include "task.h"
30 #include "thread.h"
31 #include "toolhelp.h"
32 #include "winnt.h"
33 #include "winsock.h"
34 #include "thread.h"
35 #include "syslevel.h"
36 #include "debugtools.h"
37 #include "dosexe.h"
38 #include "services.h"
39 #include "server.h"
40
41 DECLARE_DEBUG_CHANNEL(relay)
42 DECLARE_DEBUG_CHANNEL(task)
43 DECLARE_DEBUG_CHANNEL(toolhelp)
44
45   /* Min. number of thunks allocated when creating a new segment */
46 #define MIN_THUNKS  32
47
48   /* Pointer to function to switch to a larger stack */
49 int (*IF1632_CallLargeStack)( int (*func)(), void *arg ) = NULL;
50
51   /* Pointer to debugger callback routine */
52 void (*TASK_AddTaskEntryBreakpoint)( HTASK16 hTask ) = NULL;
53
54 static THHOOK DefaultThhook = { 0 };
55 THHOOK *pThhook = &DefaultThhook;
56
57 #define hCurrentTask (pThhook->CurTDB)
58 #define hFirstTask   (pThhook->HeadTDB)
59 #define hLockedTask  (pThhook->LockTDB)
60
61 static UINT16 nTaskCount = 0;
62
63
64 /***********************************************************************
65  *           TASK_InstallTHHook
66  */
67 void TASK_InstallTHHook( THHOOK *pNewThhook )
68 {
69      THHOOK *pOldThhook = pThhook;
70
71      pThhook = pNewThhook? pNewThhook : &DefaultThhook;
72
73      *pThhook = *pOldThhook;
74 }
75
76 /***********************************************************************
77  *           TASK_GetNextTask
78  */
79 HTASK16 TASK_GetNextTask( HTASK16 hTask )
80 {
81     TDB* pTask = (TDB*)GlobalLock16(hTask);
82
83     if (pTask->hNext) return pTask->hNext;
84     return (hFirstTask != hTask) ? hFirstTask : 0; 
85 }
86
87 /***********************************************************************
88  *           TASK_LinkTask
89  */
90 static void TASK_LinkTask( HTASK16 hTask )
91 {
92     HTASK16 *prevTask;
93     TDB *pTask;
94
95     if (!(pTask = (TDB *)GlobalLock16( hTask ))) return;
96     prevTask = &hFirstTask;
97     while (*prevTask)
98     {
99         TDB *prevTaskPtr = (TDB *)GlobalLock16( *prevTask );
100         if (prevTaskPtr->priority >= pTask->priority) break;
101         prevTask = &prevTaskPtr->hNext;
102     }
103     pTask->hNext = *prevTask;
104     *prevTask = hTask;
105     nTaskCount++;
106 }
107
108
109 /***********************************************************************
110  *           TASK_UnlinkTask
111  */
112 static void TASK_UnlinkTask( HTASK16 hTask )
113 {
114     HTASK16 *prevTask;
115     TDB *pTask;
116
117     prevTask = &hFirstTask;
118     while (*prevTask && (*prevTask != hTask))
119     {
120         pTask = (TDB *)GlobalLock16( *prevTask );
121         prevTask = &pTask->hNext;
122     }
123     if (*prevTask)
124     {
125         pTask = (TDB *)GlobalLock16( *prevTask );
126         *prevTask = pTask->hNext;
127         pTask->hNext = 0;
128         nTaskCount--;
129     }
130 }
131
132
133 /***********************************************************************
134  *           TASK_CreateThunks
135  *
136  * Create a thunk free-list in segment 'handle', starting from offset 'offset'
137  * and containing 'count' entries.
138  */
139 static void TASK_CreateThunks( HGLOBAL16 handle, WORD offset, WORD count )
140 {
141     int i;
142     WORD free;
143     THUNKS *pThunk;
144
145     pThunk = (THUNKS *)((BYTE *)GlobalLock16( handle ) + offset);
146     pThunk->next = 0;
147     pThunk->magic = THUNK_MAGIC;
148     pThunk->free = (int)&pThunk->thunks - (int)pThunk;
149     free = pThunk->free;
150     for (i = 0; i < count-1; i++)
151     {
152         free += 8;  /* Offset of next thunk */
153         pThunk->thunks[4*i] = free;
154     }
155     pThunk->thunks[4*i] = 0;  /* Last thunk */
156 }
157
158
159 /***********************************************************************
160  *           TASK_AllocThunk
161  *
162  * Allocate a thunk for MakeProcInstance().
163  */
164 static SEGPTR TASK_AllocThunk( HTASK16 hTask )
165 {
166     TDB *pTask;
167     THUNKS *pThunk;
168     WORD sel, base;
169     
170     if (!(pTask = (TDB *)GlobalLock16( hTask ))) return 0;
171     sel = pTask->hCSAlias;
172     pThunk = &pTask->thunks;
173     base = (int)pThunk - (int)pTask;
174     while (!pThunk->free)
175     {
176         sel = pThunk->next;
177         if (!sel)  /* Allocate a new segment */
178         {
179             sel = GLOBAL_Alloc( GMEM_FIXED, sizeof(THUNKS) + (MIN_THUNKS-1)*8,
180                                 pTask->hPDB, TRUE, FALSE, FALSE );
181             if (!sel) return (SEGPTR)0;
182             TASK_CreateThunks( sel, 0, MIN_THUNKS );
183             pThunk->next = sel;
184         }
185         pThunk = (THUNKS *)GlobalLock16( sel );
186         base = 0;
187     }
188     base += pThunk->free;
189     pThunk->free = *(WORD *)((BYTE *)pThunk + pThunk->free);
190     return PTR_SEG_OFF_TO_SEGPTR( sel, base );
191 }
192
193
194 /***********************************************************************
195  *           TASK_FreeThunk
196  *
197  * Free a MakeProcInstance() thunk.
198  */
199 static BOOL TASK_FreeThunk( HTASK16 hTask, SEGPTR thunk )
200 {
201     TDB *pTask;
202     THUNKS *pThunk;
203     WORD sel, base;
204     
205     if (!(pTask = (TDB *)GlobalLock16( hTask ))) return 0;
206     sel = pTask->hCSAlias;
207     pThunk = &pTask->thunks;
208     base = (int)pThunk - (int)pTask;
209     while (sel && (sel != HIWORD(thunk)))
210     {
211         sel = pThunk->next;
212         pThunk = (THUNKS *)GlobalLock16( sel );
213         base = 0;
214     }
215     if (!sel) return FALSE;
216     *(WORD *)((BYTE *)pThunk + LOWORD(thunk) - base) = pThunk->free;
217     pThunk->free = LOWORD(thunk) - base;
218     return TRUE;
219 }
220
221
222 /***********************************************************************
223  *           TASK_CallToStart
224  *
225  * 32-bit entry point for a new task. This function is responsible for
226  * setting up the registers and jumping to the 16-bit entry point.
227  */
228 void TASK_CallToStart(void)
229 {
230     TDB *pTask = (TDB *)GlobalLock16( GetCurrentTask() );
231     NE_MODULE *pModule = NE_GetPtr( pTask->hModule );
232     SEGTABLEENTRY *pSegTable = NE_SEG_TABLE( pModule );
233     CONTEXT86 context;
234
235     /* Add task to 16-bit scheduler pool */
236     TASK_Reschedule();
237
238     /* Registers at initialization must be:
239      * ax   zero
240      * bx   stack size in bytes
241      * cx   heap size in bytes
242      * si   previous app instance
243      * di   current app instance
244      * bp   zero
245      * es   selector to the PSP
246      * ds   dgroup of the application
247      * ss   stack selector
248      * sp   top of the stack
249      */
250
251     memset( &context, 0, sizeof(context) );
252     CS_reg(&context)  = GlobalHandleToSel16(pSegTable[pModule->cs - 1].hSeg);
253     DS_reg(&context)  = GlobalHandleToSel16(pTask->hInstance);
254     ES_reg(&context)  = pTask->hPDB;
255     EIP_reg(&context) = pModule->ip;
256     EBX_reg(&context) = pModule->stack_size;
257     ECX_reg(&context) = pModule->heap_size;
258     EDI_reg(&context) = pTask->hInstance;
259     ESI_reg(&context) = pTask->hPrevInstance;
260
261     TRACE_(task)("Starting main program: cs:ip=%04lx:%04x ds=%04lx ss:sp=%04x:%04x\n",
262                   CS_reg(&context), IP_reg(&context), DS_reg(&context),
263                   SELECTOROF(pTask->teb->cur_stack),
264                   OFFSETOF(pTask->teb->cur_stack) );
265
266     Callbacks->CallRegisterShortProc( &context, 0 );
267 }
268
269
270 /***********************************************************************
271  *           TASK_Create
272  *
273  * NOTE: This routine might be called by a Win32 thread. Thus, we need
274  *       to be careful to protect global data structures. We do this
275  *       by entering the Win16Lock while linking the task into the
276  *       global task list.
277  */
278 BOOL TASK_Create( NE_MODULE *pModule, UINT16 cmdShow)
279 {
280     HTASK16 hTask;
281     TDB *pTask;
282     LPSTR cmd_line;
283     char name[10];
284     PDB *pdb32 = PROCESS_Current();
285
286       /* Allocate the task structure */
287
288     hTask = GLOBAL_Alloc( GMEM_FIXED | GMEM_ZEROINIT, sizeof(TDB),
289                           pModule->self, FALSE, FALSE, FALSE );
290     if (!hTask) return FALSE;
291     pTask = (TDB *)GlobalLock16( hTask );
292
293     /* Fill the task structure */
294
295     pTask->nEvents       = 0;
296     pTask->hSelf         = hTask;
297     pTask->flags         = 0;
298
299     if (pModule->flags & NE_FFLAGS_WIN32)
300         pTask->flags    |= TDBF_WIN32;
301     if (pModule->lpDosTask)
302         pTask->flags    |= TDBF_WINOLDAP;
303
304     pTask->hInstance     = pModule->self;
305     pTask->hPrevInstance = 0;
306     /* NOTE: for 16-bit tasks, the instance handles are updated later on
307              in NE_InitProcess */
308
309     pTask->version       = pModule->expected_version;
310     pTask->hModule       = pModule->self;
311     pTask->hParent       = GetCurrentTask();
312     pTask->magic         = TDB_MAGIC;
313     pTask->nCmdShow      = cmdShow;
314     pTask->teb           = NtCurrentTeb();
315     pTask->curdrive      = DRIVE_GetCurrentDrive() | 0x80;
316     strcpy( pTask->curdir, "\\" );
317     lstrcpynA( pTask->curdir + 1, DRIVE_GetDosCwd( DRIVE_GetCurrentDrive() ),
318                  sizeof(pTask->curdir) - 1 );
319
320       /* Create the thunks block */
321
322     TASK_CreateThunks( hTask, (int)&pTask->thunks - (int)pTask, 7 );
323
324       /* Copy the module name */
325
326     GetModuleName16( pModule->self, name, sizeof(name) );
327     strncpy( pTask->module_name, name, sizeof(pTask->module_name) );
328
329       /* Allocate a selector for the PDB */
330
331     pTask->hPDB = GLOBAL_CreateBlock( GMEM_FIXED, &pTask->pdb, sizeof(PDB16),
332                                     pModule->self, FALSE, FALSE, FALSE, NULL );
333
334       /* Fill the PDB */
335
336     pTask->pdb.int20 = 0x20cd;
337     pTask->pdb.dispatcher[0] = 0x9a;  /* ljmp */
338     PUT_DWORD(&pTask->pdb.dispatcher[1], (DWORD)NE_GetEntryPoint(
339            GetModuleHandle16("KERNEL"), 102 ));  /* KERNEL.102 is DOS3Call() */
340     pTask->pdb.savedint22 = INT_GetPMHandler( 0x22 );
341     pTask->pdb.savedint23 = INT_GetPMHandler( 0x23 );
342     pTask->pdb.savedint24 = INT_GetPMHandler( 0x24 );
343     pTask->pdb.fileHandlesPtr =
344         PTR_SEG_OFF_TO_SEGPTR( GlobalHandleToSel16(pTask->hPDB),
345                                (int)&((PDB16 *)0)->fileHandles );
346     pTask->pdb.hFileHandles = 0;
347     memset( pTask->pdb.fileHandles, 0xff, sizeof(pTask->pdb.fileHandles) );
348     pTask->pdb.environment    = pdb32->env_db->env_sel;
349     pTask->pdb.nbFiles        = 20;
350
351     /* Fill the command line */
352
353     cmd_line = pdb32->env_db->cmd_line;
354     while (*cmd_line && (*cmd_line != ' ') && (*cmd_line != '\t')) cmd_line++;
355     while ((*cmd_line == ' ') || (*cmd_line == '\t')) cmd_line++;
356     lstrcpynA( pTask->pdb.cmdLine+1, cmd_line, sizeof(pTask->pdb.cmdLine)-1);
357     pTask->pdb.cmdLine[0] = strlen( pTask->pdb.cmdLine + 1 );
358
359       /* Get the compatibility flags */
360
361     pTask->compat_flags = GetProfileIntA( "Compatibility", name, 0 );
362
363       /* Allocate a code segment alias for the TDB */
364
365     pTask->hCSAlias = GLOBAL_CreateBlock( GMEM_FIXED, (void *)pTask,
366                                           sizeof(TDB), pTask->hPDB, TRUE,
367                                           FALSE, FALSE, NULL );
368
369       /* Set the owner of the environment block */
370
371     FarSetOwner16( pTask->pdb.environment, pTask->hPDB );
372
373       /* Default DTA overwrites command-line */
374
375     pTask->dta = PTR_SEG_OFF_TO_SEGPTR( pTask->hPDB, 
376                                 (int)&pTask->pdb.cmdLine - (int)&pTask->pdb );
377
378     /* Create scheduler event for 16-bit tasks */
379
380     if ( !(pTask->flags & TDBF_WIN32) )
381     {
382         pTask->hEvent = CreateEventA( NULL, TRUE, FALSE, NULL );
383         pTask->hEvent = ConvertToGlobalHandle( pTask->hEvent );
384     }
385
386     /* Enter task handle into thread and process */
387  
388     pTask->teb->htask16 = pTask->teb->process->task = hTask;
389     TRACE_(task)("module='%s' cmdline='%s' task=%04x\n", name, cmd_line, hTask );
390
391     /* If requested, add entry point breakpoint */
392
393     if ( TASK_AddTaskEntryBreakpoint )
394         TASK_AddTaskEntryBreakpoint( hTask );
395
396     /* Add the task to the linked list */
397
398     SYSLEVEL_EnterWin16Lock();
399     TASK_LinkTask( hTask );
400     SYSLEVEL_LeaveWin16Lock();
401
402     return TRUE;
403 }
404
405 /***********************************************************************
406  *           TASK_DeleteTask
407  */
408 static void TASK_DeleteTask( HTASK16 hTask )
409 {
410     TDB *pTask;
411     HGLOBAL16 hPDB;
412
413     if (!(pTask = (TDB *)GlobalLock16( hTask ))) return;
414     hPDB = pTask->hPDB;
415
416     pTask->magic = 0xdead; /* invalidate signature */
417
418     /* Delete the Win32 part of the task */
419
420 /*    PROCESS_FreePDB( pTask->teb->process ); FIXME */
421 /*    K32OBJ_DecCount( &pTask->teb->header ); FIXME */
422
423     /* Free the selector aliases */
424
425     GLOBAL_FreeBlock( pTask->hCSAlias );
426     GLOBAL_FreeBlock( pTask->hPDB );
427
428     /* Free the task module */
429
430     FreeModule16( pTask->hModule );
431
432     /* Free the task structure itself */
433
434     GlobalFree16( hTask );
435
436     /* Free all memory used by this task (including the 32-bit stack, */
437     /* the environment block and the thunk segments). */
438
439     GlobalFreeAll16( hPDB );
440 }
441
442 /***********************************************************************
443  *           TASK_KillTask
444  */
445 void TASK_KillTask( HTASK16 hTask )
446 {
447     TDB *pTask; 
448
449     /* Enter the Win16Lock to protect global data structures */
450     SYSLEVEL_EnterWin16Lock();
451
452     if ( !hTask ) hTask = GetCurrentTask();
453     pTask = (TDB *)GlobalLock16( hTask );
454     if ( !pTask ) 
455     {
456         SYSLEVEL_LeaveWin16Lock();
457         return;
458     }
459
460     TRACE_(task)("Killing task %04x\n", hTask );
461
462     /* Delete active sockets */
463
464     if( pTask->pwsi )
465         WINSOCK_DeleteTaskWSI( pTask, pTask->pwsi );
466
467 #ifdef MZ_SUPPORTED
468 {
469     /* Kill DOS VM task */
470     NE_MODULE *pModule = NE_GetPtr( pTask->hModule );
471     if ( pModule->lpDosTask )
472         MZ_KillModule( pModule->lpDosTask );
473 }
474 #endif
475
476     /* Perform USER cleanup */
477
478     if (pTask->userhandler)
479         pTask->userhandler( hTask, USIG16_TERMINATION, 0,
480                             pTask->hInstance, pTask->hQueue );
481
482     PROCESS_CallUserSignalProc( USIG_PROCESS_EXIT, 0 );
483     PROCESS_CallUserSignalProc( USIG_THREAD_EXIT, 0 );     /* FIXME */
484     PROCESS_CallUserSignalProc( USIG_PROCESS_DESTROY, 0 );
485
486     if (nTaskCount <= 1)
487     {
488         TRACE_(task)("this is the last task, exiting\n" );
489         ExitKernel16();
490     }
491
492     /* FIXME: Hack! Send a message to the initial task so that
493      * the GetMessage wakes up and the initial task can check whether
494      * it is the only remaining one and terminate itself ...
495      * The initial task should probably install hooks or something
496      * to get informed about task termination :-/
497      */
498     Callout.PostAppMessage16( PROCESS_Initial()->task, WM_NULL, 0, 0 );
499
500     /* Remove the task from the list to be sure we never switch back to it */
501     TASK_UnlinkTask( hTask );
502     if( nTaskCount )
503     {
504         TDB* p = (TDB *)GlobalLock16( hFirstTask );
505         while( p )
506         {
507             if( p->hYieldTo == hTask ) p->hYieldTo = 0;
508             p = (TDB *)GlobalLock16( p->hNext );
509         }
510     }
511
512     pTask->nEvents = 0;
513
514     if ( hLockedTask == hTask )
515         hLockedTask = 0;
516
517     TASK_DeleteTask( hTask );
518
519     /* When deleting the current task ... */
520     if ( hTask == hCurrentTask )
521     {
522         DWORD lockCount;
523
524         /* ... schedule another one ... */
525         TASK_Reschedule();
526
527         /* ... and completely release the Win16Lock, just in case. */
528         ReleaseThunkLock( &lockCount );
529
530         return;
531     }
532
533     SYSLEVEL_LeaveWin16Lock();
534 }
535
536 /***********************************************************************
537  *           TASK_Reschedule
538  *
539  * This is where all the magic of task-switching happens!
540  *
541  * 16-bit Windows performs non-preemptive (cooperative) multitasking.
542  * This means that each 16-bit task runs until it voluntarily yields 
543  * control, at which point the scheduler gets active and selects the
544  * next task to run.
545  *
546  * In Wine, all processes, even 16-bit ones, are scheduled preemptively
547  * by the standard scheduler of the underlying OS.  As many 16-bit apps
548  * *rely* on the behaviour of the Windows scheduler, however, we have
549  * to simulate that behaviour.
550  *
551  * This is achieved as follows: every 16-bit task is at time (except
552  * during task creation and deletion) in one of two states: either it
553  * is the one currently running, then the global variable hCurrentTask
554  * contains its task handle, or it is not currently running, then it
555  * is blocked on a special scheduler event, a global handle to which
556  * is stored in the task struct.
557  *
558  * When the current task yields control, this routine gets called. Its
559  * purpose is to determine the next task to be active, signal the 
560  * scheduler event of that task, and then put the current task to sleep
561  * waiting for *its* scheduler event to get signalled again.
562  *
563  * This routine can get called in a few other special situations as well:
564  *
565  * - On creation of a 16-bit task, the Unix process executing the task
566  *   calls TASK_Reschedule once it has completed its initialization.
567  *   At this point, the task needs to be blocked until its scheduler
568  *   event is signalled the first time (this will be done by the parent
569  *   process to get the task up and running).
570  *
571  * - When the task currently running terminates itself, this routine gets
572  *   called and has to schedule another task, *without* blocking the 
573  *   terminating task.
574  *
575  * - When a 32-bit thread posts an event for a 16-bit task, it might be
576  *   the case that *no* 16-bit task is currently running.  In this case
577  *   the task that has now an event pending is to be scheduled.
578  *
579  */
580 void TASK_Reschedule(void)
581 {
582     TDB *pOldTask = NULL, *pNewTask = NULL;
583     HTASK16 hOldTask = 0, hNewTask = 0;
584     enum { MODE_YIELD, MODE_SLEEP, MODE_WAKEUP } mode;
585     DWORD lockCount;
586
587     SYSLEVEL_EnterWin16Lock();
588
589     /* Check what we need to do */
590     hOldTask = GetCurrentTask();
591     pOldTask = (TDB *)GlobalLock16( hOldTask );
592     TRACE_(task)( "entered with hCurrentTask %04x by hTask %04x (pid %ld)\n", 
593                   hCurrentTask, hOldTask, (long) getpid() );
594
595     if ( pOldTask && THREAD_IsWin16( NtCurrentTeb() ) )
596     {
597         /* We are called by an active (non-deleted) 16-bit task */
598
599         /* If we don't even have a current task, or else the current
600            task has yielded, we'll need to schedule a new task and
601            (possibly) put the calling task to sleep.  Otherwise, we
602            only block the caller. */
603
604         if ( !hCurrentTask || hCurrentTask == hOldTask )
605             mode = MODE_YIELD;
606         else
607             mode = MODE_SLEEP;
608     }
609     else
610     {
611         /* We are called by a deleted 16-bit task or a 32-bit thread */
612
613         /* The only situation where we need to do something is if we
614            now do not have a current task.  Then, we'll need to wake up
615            some task that has events pending. */
616
617         if ( !hCurrentTask || hCurrentTask == hOldTask )
618             mode = MODE_WAKEUP;
619         else
620         {
621             /* nothing to do */
622             SYSLEVEL_LeaveWin16Lock();
623             return;
624         }
625     }
626
627     /* Find a task to yield to: check for DirectedYield() */
628     if ( mode == MODE_YIELD && pOldTask && pOldTask->hYieldTo )
629     {
630         hNewTask = pOldTask->hYieldTo;
631         pNewTask = (TDB *)GlobalLock16( hNewTask );
632         if( !pNewTask || !pNewTask->nEvents) hNewTask = 0;
633         pOldTask->hYieldTo = 0;
634     }
635
636     /* Find a task to yield to: check for pending events */
637     if ( (mode == MODE_YIELD || mode == MODE_WAKEUP) && !hNewTask )
638     {
639         hNewTask = hFirstTask;
640         while (hNewTask)
641         {
642             pNewTask = (TDB *)GlobalLock16( hNewTask );
643
644             TRACE_(task)( "\ttask = %04x, events = %i\n",
645                           hNewTask, pNewTask->nEvents );
646
647             if (pNewTask->nEvents) break;
648             hNewTask = pNewTask->hNext;
649         }
650         if (hLockedTask && (hNewTask != hLockedTask)) hNewTask = 0;
651     }
652
653     /* If we are still the task with highest priority, just return ... */
654     if ( mode == MODE_YIELD && hNewTask == hCurrentTask )
655     {
656         TRACE_(task)("returning to the current task (%04x)\n", hCurrentTask );
657         SYSLEVEL_LeaveWin16Lock();
658
659         /* Allow Win32 threads to thunk down even while a Win16 task is
660            in a tight PeekMessage() or Yield() loop ... */
661         ReleaseThunkLock( &lockCount );
662         RestoreThunkLock( lockCount );
663         return;
664     }
665
666     /* If no task to yield to found, suspend 16-bit scheduler ... */
667     if ( mode == MODE_YIELD && !hNewTask )
668     {
669         TRACE_(task)("No currently active task\n");
670         hCurrentTask = 0;
671     }
672
673     /* If we found a task to wake up, do it ... */
674     if ( (mode == MODE_YIELD || mode == MODE_WAKEUP) && hNewTask )
675     {
676         TRACE_(task)("Switching to task %04x (%.8s)\n",
677                       hNewTask, pNewTask->module_name );
678
679         pNewTask->priority++;
680         TASK_UnlinkTask( hNewTask );
681         TASK_LinkTask( hNewTask );
682         pNewTask->priority--;
683
684         hCurrentTask = hNewTask;
685         SetEvent( pNewTask->hEvent );
686
687         /* This is set just in case some app reads it ... */
688         pNewTask->ss_sp = pNewTask->teb->cur_stack;
689     }
690
691     /* If we need to put the current task to sleep, do it ... */
692     if ( (mode == MODE_YIELD || mode == MODE_SLEEP) && hOldTask != hCurrentTask )
693     {
694         ResetEvent( pOldTask->hEvent );
695
696         ReleaseThunkLock( &lockCount );
697         SYSLEVEL_CheckNotLevel( 1 );
698         WaitForSingleObject( pOldTask->hEvent, INFINITE );
699         RestoreThunkLock( lockCount );
700     }
701
702     SYSLEVEL_LeaveWin16Lock();
703 }
704
705 /***********************************************************************
706  *           InitTask  (KERNEL.91)
707  *
708  * Called by the application startup code.
709  */
710 void WINAPI InitTask16( CONTEXT86 *context )
711 {
712     TDB *pTask;
713     INSTANCEDATA *pinstance;
714     SEGPTR ptr;
715
716     EAX_reg(context) = 0;
717     if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return;
718
719     /* Note: we need to trust that BX/CX contain the stack/heap sizes, 
720        as some apps, notably Visual Basic apps, *modify* the heap/stack
721        size of the instance data segment before calling InitTask() */
722
723     /* Initialize the INSTANCEDATA structure */
724     pinstance = (INSTANCEDATA *)PTR_SEG_OFF_TO_LIN(CURRENT_DS, 0);
725     pinstance->stackmin    = OFFSETOF( pTask->teb->cur_stack );
726     pinstance->stackbottom = pinstance->stackmin; /* yup, that's right. Confused me too. */
727     pinstance->stacktop    = ( pinstance->stackmin > BX_reg(context)? 
728                                pinstance->stackmin - BX_reg(context) : 0 ) + 150; 
729
730     /* Initialize the local heap */
731     if ( CX_reg(context) )
732         LocalInit16( pTask->hInstance, 0, CX_reg(context) );
733
734     /* Initialize implicitly loaded DLLs */
735     NE_InitializeDLLs( pTask->hModule );
736
737     /* Registers on return are:
738      * ax     1 if OK, 0 on error
739      * cx     stack limit in bytes
740      * dx     cmdShow parameter
741      * si     instance handle of the previous instance
742      * di     instance handle of the new task
743      * es:bx  pointer to command-line inside PSP
744      *
745      * 0 (=%bp) is pushed on the stack
746      */
747     ptr = STACK16_PUSH( pTask->teb, sizeof(WORD) );
748     *(WORD *)PTR_SEG_TO_LIN(ptr) = 0;
749     SP_reg(context) -= 2;
750
751     EAX_reg(context) = 1;
752         
753     if (!pTask->pdb.cmdLine[0]) EBX_reg(context) = 0x80;
754     else
755     {
756         LPBYTE p = &pTask->pdb.cmdLine[1];
757         while ((*p == ' ') || (*p == '\t')) p++;
758         EBX_reg(context) = 0x80 + (p - pTask->pdb.cmdLine);
759     }
760     ECX_reg(context) = pinstance->stacktop;
761     EDX_reg(context) = pTask->nCmdShow;
762     ESI_reg(context) = (DWORD)pTask->hPrevInstance;
763     EDI_reg(context) = (DWORD)pTask->hInstance;
764     ES_reg (context) = (WORD)pTask->hPDB;
765 }
766
767
768 /***********************************************************************
769  *           WaitEvent  (KERNEL.30)
770  */
771 BOOL16 WINAPI WaitEvent16( HTASK16 hTask )
772 {
773     TDB *pTask;
774
775     if (!hTask) hTask = GetCurrentTask();
776     pTask = (TDB *)GlobalLock16( hTask );
777
778     if ( !THREAD_IsWin16( NtCurrentTeb() ) )
779     {
780         FIXME_(task)("called for Win32 thread (%04x)!\n", NtCurrentTeb()->teb_sel);
781         return TRUE;
782     }
783
784     if (pTask->nEvents > 0)
785     {
786         pTask->nEvents--;
787         return FALSE;
788     }
789     TASK_Reschedule();
790
791     /* When we get back here, we have an event */
792
793     if (pTask->nEvents > 0) pTask->nEvents--;
794     return TRUE;
795 }
796
797
798 /***********************************************************************
799  *           PostEvent  (KERNEL.31)
800  */
801 void WINAPI PostEvent16( HTASK16 hTask )
802 {
803     TDB *pTask;
804
805     if (!hTask) hTask = GetCurrentTask();
806     if (!(pTask = (TDB *)GlobalLock16( hTask ))) return;
807
808     if ( !THREAD_IsWin16( pTask->teb ) )
809     {
810         FIXME_(task)("called for Win32 thread (%04x)!\n", pTask->teb->teb_sel );
811         return;
812     }
813
814     pTask->nEvents++;
815
816     /* If we are a 32-bit task, we might need to wake up the 16-bit scheduler */
817     if ( !THREAD_IsWin16( NtCurrentTeb() ) )
818         TASK_Reschedule();
819 }
820
821
822 /***********************************************************************
823  *           SetPriority  (KERNEL.32)
824  */
825 void WINAPI SetPriority16( HTASK16 hTask, INT16 delta )
826 {
827     TDB *pTask;
828     INT16 newpriority;
829
830     if (!hTask) hTask = GetCurrentTask();
831     if (!(pTask = (TDB *)GlobalLock16( hTask ))) return;
832     newpriority = pTask->priority + delta;
833     if (newpriority < -32) newpriority = -32;
834     else if (newpriority > 15) newpriority = 15;
835
836     pTask->priority = newpriority + 1;
837     TASK_UnlinkTask( hTask );
838     TASK_LinkTask( hTask );
839     pTask->priority--;
840 }
841
842
843 /***********************************************************************
844  *           LockCurrentTask  (KERNEL.33)
845  */
846 HTASK16 WINAPI LockCurrentTask16( BOOL16 bLock )
847 {
848     if (bLock) hLockedTask = GetCurrentTask();
849     else hLockedTask = 0;
850     return hLockedTask;
851 }
852
853
854 /***********************************************************************
855  *           IsTaskLocked  (KERNEL.122)
856  */
857 HTASK16 WINAPI IsTaskLocked16(void)
858 {
859     return hLockedTask;
860 }
861
862
863 /***********************************************************************
864  *           OldYield  (KERNEL.117)
865  */
866 void WINAPI OldYield16(void)
867 {
868     TDB *pCurTask = (TDB *)GlobalLock16( GetCurrentTask() );
869
870     if ( !THREAD_IsWin16( NtCurrentTeb() ) )
871     {
872         FIXME_(task)("called for Win32 thread (%04x)!\n", NtCurrentTeb()->teb_sel);
873         return;
874     }
875
876     if (pCurTask) pCurTask->nEvents++;  /* Make sure we get back here */
877     TASK_Reschedule();
878     if (pCurTask) pCurTask->nEvents--;
879 }
880
881
882 /***********************************************************************
883  *           DirectedYield  (KERNEL.150)
884  */
885 void WINAPI DirectedYield16( HTASK16 hTask )
886 {
887     TDB *pCurTask = (TDB *)GlobalLock16( GetCurrentTask() );
888
889     if ( !THREAD_IsWin16( NtCurrentTeb() ) )
890     {
891         FIXME_(task)("called for Win32 thread (%04x)!\n", NtCurrentTeb()->teb_sel);
892         return;
893     }
894
895     TRACE_(task)("%04x: DirectedYield(%04x)\n", pCurTask->hSelf, hTask );
896
897     pCurTask->hYieldTo = hTask;
898     OldYield16();
899
900     TRACE_(task)("%04x: back from DirectedYield(%04x)\n", pCurTask->hSelf, hTask );
901 }
902
903 /***********************************************************************
904  *           Yield16  (KERNEL.29)
905  */
906 void WINAPI Yield16(void)
907 {
908     TDB *pCurTask = (TDB *)GlobalLock16( GetCurrentTask() );
909
910     if (pCurTask) pCurTask->hYieldTo = 0;
911     if (pCurTask && pCurTask->hQueue) Callout.UserYield16();
912     else OldYield16();
913 }
914
915 /***********************************************************************
916  *           KERNEL_490  (KERNEL.490)
917  */
918 HTASK16 WINAPI KERNEL_490( HTASK16 someTask )
919 {
920     if ( !someTask ) return 0;
921
922     FIXME_(task)("(%04x): stub\n", someTask );
923     return 0;
924 }
925
926 /***********************************************************************
927  *           MakeProcInstance16  (KERNEL.51)
928  */
929 FARPROC16 WINAPI MakeProcInstance16( FARPROC16 func, HANDLE16 hInstance )
930 {
931     BYTE *thunk,*lfunc;
932     SEGPTR thunkaddr;
933
934     if (!func) {
935       ERR_(task)("Ouch ! MakeProcInstance called with func == NULL !\n");
936       return (FARPROC16)0; /* Windows seems to do the same */
937     }
938     if (!hInstance) hInstance = CURRENT_DS;
939     thunkaddr = TASK_AllocThunk( GetCurrentTask() );
940     if (!thunkaddr) return (FARPROC16)0;
941     thunk = PTR_SEG_TO_LIN( thunkaddr );
942     lfunc = PTR_SEG_TO_LIN( func );
943
944     TRACE_(task)("(%08lx,%04x): got thunk %08lx\n",
945                   (DWORD)func, hInstance, (DWORD)thunkaddr );
946     if (((lfunc[0]==0x8c) && (lfunc[1]==0xd8)) ||
947         ((lfunc[0]==0x1e) && (lfunc[1]==0x58))
948     ) {
949         FIXME_(task)("thunk would be useless for %p, overwriting with nop;nop;\n", func );
950         lfunc[0]=0x90; /* nop */
951         lfunc[1]=0x90; /* nop */
952     }
953     
954     *thunk++ = 0xb8;    /* movw instance, %ax */
955     *thunk++ = (BYTE)(hInstance & 0xff);
956     *thunk++ = (BYTE)(hInstance >> 8);
957     *thunk++ = 0xea;    /* ljmp func */
958     *(DWORD *)thunk = (DWORD)func;
959     return (FARPROC16)thunkaddr;
960 }
961
962
963 /***********************************************************************
964  *           FreeProcInstance16  (KERNEL.52)
965  */
966 void WINAPI FreeProcInstance16( FARPROC16 func )
967 {
968     TRACE_(task)("(%08lx)\n", (DWORD)func );
969     TASK_FreeThunk( GetCurrentTask(), (SEGPTR)func );
970 }
971
972
973 /**********************************************************************
974  *          GetCodeHandle    (KERNEL.93)
975  */
976 HANDLE16 WINAPI GetCodeHandle16( FARPROC16 proc )
977 {
978     HANDLE16 handle;
979     BYTE *thunk = (BYTE *)PTR_SEG_TO_LIN( proc );
980
981     /* Return the code segment containing 'proc'. */
982     /* Not sure if this is really correct (shouldn't matter that much). */
983
984     /* Check if it is really a thunk */
985     if ((thunk[0] == 0xb8) && (thunk[3] == 0xea))
986         handle = GlobalHandle16( thunk[6] + (thunk[7] << 8) );
987     else
988         handle = GlobalHandle16( HIWORD(proc) );
989
990     return handle;
991 }
992
993 /**********************************************************************
994  *          GetCodeInfo    (KERNEL.104)
995  */
996 VOID WINAPI GetCodeInfo16( FARPROC16 proc, SEGINFO *segInfo )
997 {
998     BYTE *thunk = (BYTE *)PTR_SEG_TO_LIN( proc );
999     NE_MODULE *pModule = NULL;
1000     SEGTABLEENTRY *pSeg = NULL;
1001     WORD segNr;
1002
1003     /* proc is either a thunk, or else a pair of module handle
1004        and segment number. In the first case, we also need to
1005        extract module and segment number. */
1006
1007     if ((thunk[0] == 0xb8) && (thunk[3] == 0xea))
1008     {
1009         WORD selector = thunk[6] + (thunk[7] << 8);
1010         pModule = NE_GetPtr( GlobalHandle16( selector ) );
1011         pSeg = pModule? NE_SEG_TABLE( pModule ) : NULL;
1012
1013         if ( pModule )
1014             for ( segNr = 0; segNr < pModule->seg_count; segNr++, pSeg++ )
1015                 if ( GlobalHandleToSel16(pSeg->hSeg) == selector )
1016                     break;
1017
1018         if ( pModule && segNr >= pModule->seg_count )
1019             pSeg = NULL;
1020     }
1021     else
1022     {
1023         pModule = NE_GetPtr( HIWORD( proc ) );
1024         segNr   = LOWORD( proc );
1025
1026         if ( pModule && segNr < pModule->seg_count )
1027             pSeg = NE_SEG_TABLE( pModule ) + segNr;
1028     }
1029
1030     /* fill in segment information */
1031
1032     segInfo->offSegment = pSeg? pSeg->filepos : 0;
1033     segInfo->cbSegment  = pSeg? pSeg->size : 0;
1034     segInfo->flags      = pSeg? pSeg->flags : 0;
1035     segInfo->cbAlloc    = pSeg? pSeg->minsize : 0;
1036     segInfo->h          = pSeg? pSeg->hSeg : 0;
1037     segInfo->alignShift = pModule? pModule->alignment : 0;
1038 }
1039
1040
1041 /**********************************************************************
1042  *          DefineHandleTable16    (KERNEL.94)
1043  */
1044 BOOL16 WINAPI DefineHandleTable16( WORD wOffset )
1045 {
1046     return TRUE;  /* FIXME */
1047 }
1048
1049
1050 /***********************************************************************
1051  *           SetTaskQueue  (KERNEL.34)
1052  */
1053 HQUEUE16 WINAPI SetTaskQueue16( HTASK16 hTask, HQUEUE16 hQueue )
1054 {
1055     HQUEUE16 hPrev;
1056     TDB *pTask;
1057
1058     if (!hTask) hTask = GetCurrentTask();
1059     if (!(pTask = (TDB *)GlobalLock16( hTask ))) return 0;
1060
1061     hPrev = pTask->hQueue;
1062     pTask->hQueue = hQueue;
1063
1064     return hPrev;
1065 }
1066
1067
1068 /***********************************************************************
1069  *           GetTaskQueue  (KERNEL.35)
1070  */
1071 HQUEUE16 WINAPI GetTaskQueue16( HTASK16 hTask )
1072 {
1073     TDB *pTask;
1074
1075     if (!hTask) hTask = GetCurrentTask();
1076     if (!(pTask = (TDB *)GlobalLock16( hTask ))) return 0;
1077     return pTask->hQueue;
1078 }
1079
1080 /***********************************************************************
1081  *           SetThreadQueue  (KERNEL.463)
1082  */
1083 HQUEUE16 WINAPI SetThreadQueue16( DWORD thread, HQUEUE16 hQueue )
1084 {
1085     TEB *teb = thread? THREAD_IdToTEB( thread ) : NtCurrentTeb();
1086     HQUEUE16 oldQueue = teb? teb->queue : 0;
1087
1088     if ( teb )
1089     {
1090         teb->queue = hQueue;
1091
1092         if ( GetTaskQueue16( teb->process->task ) == oldQueue )
1093             SetTaskQueue16( teb->process->task, hQueue );
1094     }
1095
1096     return oldQueue;
1097 }
1098
1099 /***********************************************************************
1100  *           GetThreadQueue  (KERNEL.464)
1101  */
1102 HQUEUE16 WINAPI GetThreadQueue16( DWORD thread )
1103 {
1104     TEB *teb = NULL;
1105     if ( !thread )
1106         teb = NtCurrentTeb();
1107     else if ( HIWORD(thread) )
1108         teb = THREAD_IdToTEB( thread );
1109     else if ( IsTask16( (HTASK16)thread ) )
1110         teb = ((TDB *)GlobalLock16( (HANDLE16)thread ))->teb;
1111
1112     return (HQUEUE16)(teb? teb->queue : 0);
1113 }
1114
1115 /***********************************************************************
1116  *           SetFastQueue  (KERNEL.624)
1117  */
1118 VOID WINAPI SetFastQueue16( DWORD thread, HANDLE hQueue )
1119 {
1120     TEB *teb = NULL;
1121     if ( !thread )
1122         teb = NtCurrentTeb();
1123     else if ( HIWORD(thread) )
1124         teb = THREAD_IdToTEB( thread );
1125     else if ( IsTask16( (HTASK16)thread ) )
1126         teb = ((TDB *)GlobalLock16( (HANDLE16)thread ))->teb;
1127
1128     if ( teb ) teb->queue = (HQUEUE16) hQueue;
1129 }
1130
1131 /***********************************************************************
1132  *           GetFastQueue  (KERNEL.625)
1133  */
1134 HANDLE WINAPI GetFastQueue16( void )
1135 {
1136     TEB *teb = NtCurrentTeb();
1137     if (!teb) return 0;
1138
1139     if (!teb->queue)
1140         Callout.InitThreadInput16( 0, THREAD_IsWin16(teb)? 4 : 5 );
1141
1142     if (!teb->queue)
1143         FIXME_(task)("(): should initialize thread-local queue, expect failure!\n" );
1144
1145     return (HANDLE)teb->queue;
1146 }
1147
1148 /***********************************************************************
1149  *           SwitchStackTo   (KERNEL.108)
1150  */
1151 void WINAPI SwitchStackTo16( WORD seg, WORD ptr, WORD top )
1152 {
1153     TDB *pTask;
1154     STACK16FRAME *oldFrame, *newFrame;
1155     INSTANCEDATA *pData;
1156     UINT16 copySize;
1157
1158     if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return;
1159     if (!(pData = (INSTANCEDATA *)GlobalLock16( seg ))) return;
1160     TRACE_(task)("old=%04x:%04x new=%04x:%04x\n",
1161                   SELECTOROF( pTask->teb->cur_stack ),
1162                   OFFSETOF( pTask->teb->cur_stack ), seg, ptr );
1163
1164     /* Save the old stack */
1165
1166     oldFrame = THREAD_STACK16( pTask->teb );
1167     /* pop frame + args and push bp */
1168     pData->old_ss_sp   = pTask->teb->cur_stack + sizeof(STACK16FRAME)
1169                            + 2 * sizeof(WORD);
1170     *(WORD *)PTR_SEG_TO_LIN(pData->old_ss_sp) = oldFrame->bp;
1171     pData->stacktop    = top;
1172     pData->stackmin    = ptr;
1173     pData->stackbottom = ptr;
1174
1175     /* Switch to the new stack */
1176
1177     /* Note: we need to take the 3 arguments into account; otherwise,
1178      * the stack will underflow upon return from this function.
1179      */
1180     copySize = oldFrame->bp - OFFSETOF(pData->old_ss_sp);
1181     copySize += 3 * sizeof(WORD) + sizeof(STACK16FRAME);
1182     pTask->teb->cur_stack = PTR_SEG_OFF_TO_SEGPTR( seg, ptr - copySize );
1183     newFrame = THREAD_STACK16( pTask->teb );
1184
1185     /* Copy the stack frame and the local variables to the new stack */
1186
1187     memmove( newFrame, oldFrame, copySize );
1188     newFrame->bp = ptr;
1189     *(WORD *)PTR_SEG_OFF_TO_LIN( seg, ptr ) = 0;  /* clear previous bp */
1190 }
1191
1192
1193 /***********************************************************************
1194  *           SwitchStackBack   (KERNEL.109)
1195  */
1196 void WINAPI SwitchStackBack16( CONTEXT86 *context )
1197 {
1198     STACK16FRAME *oldFrame, *newFrame;
1199     INSTANCEDATA *pData;
1200
1201     if (!(pData = (INSTANCEDATA *)GlobalLock16(SELECTOROF(NtCurrentTeb()->cur_stack))))
1202         return;
1203     if (!pData->old_ss_sp)
1204     {
1205         WARN_(task)("No previous SwitchStackTo\n" );
1206         return;
1207     }
1208     TRACE_(task)("restoring stack %04x:%04x\n",
1209                  SELECTOROF(pData->old_ss_sp), OFFSETOF(pData->old_ss_sp) );
1210
1211     oldFrame = CURRENT_STACK16;
1212
1213     /* Pop bp from the previous stack */
1214
1215     BP_reg(context) = *(WORD *)PTR_SEG_TO_LIN(pData->old_ss_sp);
1216     pData->old_ss_sp += sizeof(WORD);
1217
1218     /* Switch back to the old stack */
1219
1220     NtCurrentTeb()->cur_stack = pData->old_ss_sp - sizeof(STACK16FRAME);
1221     SS_reg(context)  = SELECTOROF(pData->old_ss_sp);
1222     ESP_reg(context) = OFFSETOF(pData->old_ss_sp) - sizeof(DWORD); /*ret addr*/
1223     pData->old_ss_sp = 0;
1224
1225     /* Build a stack frame for the return */
1226
1227     newFrame = CURRENT_STACK16;
1228     newFrame->frame32 = oldFrame->frame32;
1229     if (TRACE_ON(relay))
1230     {
1231         newFrame->entry_ip = oldFrame->entry_ip;
1232         newFrame->entry_cs = oldFrame->entry_cs;
1233     }
1234 }
1235
1236
1237 /***********************************************************************
1238  *           GetTaskQueueDS16  (KERNEL.118)
1239  */
1240 void WINAPI GetTaskQueueDS16(void)
1241 {
1242     CURRENT_STACK16->ds = GlobalHandleToSel16( GetTaskQueue16(0) );
1243 }
1244
1245
1246 /***********************************************************************
1247  *           GetTaskQueueES16  (KERNEL.119)
1248  */
1249 void WINAPI GetTaskQueueES16(void)
1250 {
1251     CURRENT_STACK16->es = GlobalHandleToSel16( GetTaskQueue16(0) );
1252 }
1253
1254
1255 /***********************************************************************
1256  *           GetCurrentTask   (KERNEL.36)
1257  */
1258 HTASK16 WINAPI GetCurrentTask(void)
1259 {
1260     return PROCESS_Current()->task;
1261 }
1262
1263 DWORD WINAPI WIN16_GetCurrentTask(void)
1264 {
1265     /* This is the version used by relay code; the first task is */
1266     /* returned in the high word of the result */
1267     return MAKELONG( GetCurrentTask(), hFirstTask );
1268 }
1269
1270
1271 /***********************************************************************
1272  *           GetCurrentPDB   (KERNEL.37)
1273  *
1274  * UNDOC: returns PSP of KERNEL in high word
1275  */
1276 DWORD WINAPI GetCurrentPDB16(void)
1277 {
1278     TDB *pTask;
1279
1280     if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return 0;
1281     return MAKELONG(pTask->hPDB, 0); /* FIXME */
1282 }
1283
1284
1285 /***********************************************************************
1286  *           GetCurPID16   (KERNEL.157)
1287  */
1288 DWORD WINAPI GetCurPID16( DWORD unused )
1289 {
1290     return 0;
1291 }
1292
1293
1294 /***********************************************************************
1295  *           GetInstanceData   (KERNEL.54)
1296  */
1297 INT16 WINAPI GetInstanceData16( HINSTANCE16 instance, WORD buffer, INT16 len )
1298 {
1299     char *ptr = (char *)GlobalLock16( instance );
1300     if (!ptr || !len) return 0;
1301     if ((int)buffer + len >= 0x10000) len = 0x10000 - buffer;
1302     memcpy( (char *)GlobalLock16(CURRENT_DS) + buffer, ptr + buffer, len );
1303     return len;
1304 }
1305
1306
1307 /***********************************************************************
1308  *           GetExeVersion   (KERNEL.105)
1309  */
1310 WORD WINAPI GetExeVersion16(void)
1311 {
1312     TDB *pTask;
1313
1314     if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return 0;
1315     return pTask->version;
1316 }
1317
1318
1319 /***********************************************************************
1320  *           SetErrorMode16   (KERNEL.107)
1321  */
1322 UINT16 WINAPI SetErrorMode16( UINT16 mode )
1323 {
1324     TDB *pTask;
1325     if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return 0;
1326     pTask->error_mode = mode;
1327     return SetErrorMode( mode );
1328 }
1329
1330
1331 /***********************************************************************
1332  *           GetDOSEnvironment   (KERNEL.131)
1333  */
1334 SEGPTR WINAPI GetDOSEnvironment16(void)
1335 {
1336     TDB *pTask;
1337
1338     if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return 0;
1339     return PTR_SEG_OFF_TO_SEGPTR( pTask->pdb.environment, 0 );
1340 }
1341
1342
1343 /***********************************************************************
1344  *           GetNumTasks   (KERNEL.152)
1345  */
1346 UINT16 WINAPI GetNumTasks16(void)
1347 {
1348     return nTaskCount;
1349 }
1350
1351
1352 /***********************************************************************
1353  *           GetTaskDS   (KERNEL.155)
1354  *
1355  * Note: this function apparently returns a DWORD with LOWORD == HIWORD.
1356  * I don't think we need to bother with this.
1357  */
1358 HINSTANCE16 WINAPI GetTaskDS16(void)
1359 {
1360     TDB *pTask;
1361
1362     if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return 0;
1363     return pTask->hInstance;
1364 }
1365
1366 /***********************************************************************
1367  *           GetDummyModuleHandleDS   (KERNEL.602)
1368  */
1369 WORD WINAPI GetDummyModuleHandleDS16(void)
1370 {
1371     TDB *pTask;
1372     WORD selector;
1373
1374     if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return 0;
1375     if (!(pTask->flags & TDBF_WIN32)) return 0;
1376     selector = GlobalHandleToSel16( pTask->hModule );
1377     CURRENT_DS = selector;
1378     return selector;
1379 }
1380
1381 /***********************************************************************
1382  *           IsTask   (KERNEL.320)
1383  */
1384 BOOL16 WINAPI IsTask16( HTASK16 hTask )
1385 {
1386     TDB *pTask;
1387
1388     if (!(pTask = (TDB *)GlobalLock16( hTask ))) return FALSE;
1389     if (GlobalSize16( hTask ) < sizeof(TDB)) return FALSE;
1390     return (pTask->magic == TDB_MAGIC);
1391 }
1392
1393
1394 /***********************************************************************
1395  *           IsWinOldApTask16   (KERNEL.158)
1396  */
1397 BOOL16 WINAPI IsWinOldApTask16( HTASK16 hTask )
1398 {
1399     /* should return bit 0 of byte 0x48 in PSP */
1400     return FALSE;
1401 }
1402
1403 /***********************************************************************
1404  *           SetTaskSignalProc   (KERNEL.38)
1405  *
1406  * Real 16-bit interface is provided by the THUNK_SetTaskSignalProc.
1407  */
1408 FARPROC16 WINAPI SetTaskSignalProc( HTASK16 hTask, FARPROC16 proc )
1409 {
1410     TDB *pTask;
1411     FARPROC16 oldProc;
1412
1413     if (!hTask) hTask = GetCurrentTask();
1414     if (!(pTask = (TDB *)GlobalLock16( hTask ))) return NULL;
1415     oldProc = (FARPROC16)pTask->userhandler;
1416     pTask->userhandler = (USERSIGNALPROC)proc;
1417     return oldProc;
1418 }
1419
1420
1421 /***********************************************************************
1422  *           SetSigHandler   (KERNEL.140)
1423  */
1424 WORD WINAPI SetSigHandler16( FARPROC16 newhandler, FARPROC16* oldhandler,
1425                            UINT16 *oldmode, UINT16 newmode, UINT16 flag )
1426 {
1427     FIXME_(task)("(%p,%p,%p,%d,%d), unimplemented.\n",
1428           newhandler,oldhandler,oldmode,newmode,flag );
1429
1430     if (flag != 1) return 0;
1431     if (!newmode) newhandler = NULL;  /* Default handler */
1432     if (newmode != 4)
1433     {
1434         TDB *pTask;
1435
1436         if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return 0;
1437         if (oldmode) *oldmode = pTask->signal_flags;
1438         pTask->signal_flags = newmode;
1439         if (oldhandler) *oldhandler = pTask->sighandler;
1440         pTask->sighandler = newhandler;
1441     }
1442     return 0;
1443 }
1444
1445
1446 /***********************************************************************
1447  *           GlobalNotify   (KERNEL.154)
1448  *
1449  * Note that GlobalNotify does _not_ return the old NotifyProc
1450  * -- contrary to LocalNotify !!
1451  */
1452 VOID WINAPI GlobalNotify16( FARPROC16 proc )
1453 {
1454     TDB *pTask;
1455
1456     if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return;
1457     pTask->discardhandler = proc;
1458 }
1459
1460
1461 /***********************************************************************
1462  *           GetExePtr   (KERNEL.133)
1463  */
1464 static inline HMODULE16 GetExePtrHelper( HANDLE16 handle, HTASK16 *hTask )
1465 {
1466     char *ptr;
1467     HANDLE16 owner;
1468
1469       /* Check for module handle */
1470
1471     if (!(ptr = GlobalLock16( handle ))) return 0;
1472     if (((NE_MODULE *)ptr)->magic == IMAGE_OS2_SIGNATURE) return handle;
1473
1474       /* Search for this handle inside all tasks */
1475
1476     *hTask = hFirstTask;
1477     while (*hTask)
1478     {
1479         TDB *pTask = (TDB *)GlobalLock16( *hTask );
1480         if ((*hTask == handle) ||
1481             (pTask->hInstance == handle) ||
1482             (pTask->hQueue == handle) ||
1483             (pTask->hPDB == handle)) return pTask->hModule;
1484         *hTask = pTask->hNext;
1485     }
1486
1487       /* Check the owner for module handle */
1488
1489     owner = FarGetOwner16( handle );
1490     if (!(ptr = GlobalLock16( owner ))) return 0;
1491     if (((NE_MODULE *)ptr)->magic == IMAGE_OS2_SIGNATURE) return owner;
1492
1493       /* Search for the owner inside all tasks */
1494
1495     *hTask = hFirstTask;
1496     while (*hTask)
1497     {
1498         TDB *pTask = (TDB *)GlobalLock16( *hTask );
1499         if ((*hTask == owner) ||
1500             (pTask->hInstance == owner) ||
1501             (pTask->hQueue == owner) ||
1502             (pTask->hPDB == owner)) return pTask->hModule;
1503         *hTask = pTask->hNext;
1504     }
1505
1506     return 0;
1507 }
1508
1509 HMODULE16 WINAPI WIN16_GetExePtr( HANDLE16 handle )
1510 {
1511     HTASK16 hTask = 0;
1512     HMODULE16 hModule = GetExePtrHelper( handle, &hTask );
1513     STACK16FRAME *frame = CURRENT_STACK16;
1514     frame->ecx = hModule;
1515     if (hTask) frame->es = hTask;
1516     return hModule;
1517 }
1518
1519 HMODULE16 WINAPI GetExePtr( HANDLE16 handle )
1520 {
1521     HTASK16 hTask = 0;
1522     return GetExePtrHelper( handle, &hTask );
1523 }
1524
1525
1526 /***********************************************************************
1527  *           TaskFirst   (TOOLHELP.63)
1528  */
1529 BOOL16 WINAPI TaskFirst16( TASKENTRY *lpte )
1530 {
1531     lpte->hNext = hFirstTask;
1532     return TaskNext16( lpte );
1533 }
1534
1535
1536 /***********************************************************************
1537  *           TaskNext   (TOOLHELP.64)
1538  */
1539 BOOL16 WINAPI TaskNext16( TASKENTRY *lpte )
1540 {
1541     TDB *pTask;
1542     INSTANCEDATA *pInstData;
1543
1544     TRACE_(toolhelp)("(%p): task=%04x\n", lpte, lpte->hNext );
1545     if (!lpte->hNext) return FALSE;
1546     pTask = (TDB *)GlobalLock16( lpte->hNext );
1547     if (!pTask || pTask->magic != TDB_MAGIC) return FALSE;
1548     pInstData = (INSTANCEDATA *)PTR_SEG_OFF_TO_LIN( pTask->hInstance, 0 );
1549     lpte->hTask         = lpte->hNext;
1550     lpte->hTaskParent   = pTask->hParent;
1551     lpte->hInst         = pTask->hInstance;
1552     lpte->hModule       = pTask->hModule;
1553     lpte->wSS           = SELECTOROF( pTask->teb->cur_stack );
1554     lpte->wSP           = OFFSETOF( pTask->teb->cur_stack );
1555     lpte->wStackTop     = pInstData->stacktop;
1556     lpte->wStackMinimum = pInstData->stackmin;
1557     lpte->wStackBottom  = pInstData->stackbottom;
1558     lpte->wcEvents      = pTask->nEvents;
1559     lpte->hQueue        = pTask->hQueue;
1560     strncpy( lpte->szModule, pTask->module_name, 8 );
1561     lpte->szModule[8]   = '\0';
1562     lpte->wPSPOffset    = 0x100;  /*??*/
1563     lpte->hNext         = pTask->hNext;
1564     return TRUE;
1565 }
1566
1567
1568 /***********************************************************************
1569  *           TaskFindHandle   (TOOLHELP.65)
1570  */
1571 BOOL16 WINAPI TaskFindHandle16( TASKENTRY *lpte, HTASK16 hTask )
1572 {
1573     lpte->hNext = hTask;
1574     return TaskNext16( lpte );
1575 }
1576
1577
1578 /***********************************************************************
1579  *           GetAppCompatFlags16   (KERNEL.354)
1580  */
1581 DWORD WINAPI GetAppCompatFlags16( HTASK16 hTask )
1582 {
1583     return GetAppCompatFlags( hTask );
1584 }
1585
1586
1587 /***********************************************************************
1588  *           GetAppCompatFlags32   (USER32.206)
1589  */
1590 DWORD WINAPI GetAppCompatFlags( HTASK hTask )
1591 {
1592     TDB *pTask;
1593
1594     if (!hTask) hTask = GetCurrentTask();
1595     if (!(pTask=(TDB *)GlobalLock16( (HTASK16)hTask ))) return 0;
1596     if (GlobalSize16(hTask) < sizeof(TDB)) return 0;
1597     return pTask->compat_flags;
1598 }