Moved VGA-emulating DirectX code from dispdib.c to a separate
[wine/multimedia.git] / loader / task.c
blob509ee87c1866699fe3652648ce9ae737f809c1bd
1 /*
2 * Task functions
4 * Copyright 1995 Alexandre Julliard
5 */
7 #include <stdlib.h>
8 #include <string.h>
9 #include <assert.h>
11 #include "windows.h"
12 #include "user.h"
13 #include "callback.h"
14 #include "drive.h"
15 #include "file.h"
16 #include "global.h"
17 #include "instance.h"
18 #include "message.h"
19 #include "miscemu.h"
20 #include "module.h"
21 #include "neexe.h"
22 #include "peexe.h"
23 #include "pe_image.h"
24 #include "process.h"
25 #include "queue.h"
26 #include "selectors.h"
27 #include "stackframe.h"
28 #include "task.h"
29 #include "thread.h"
30 #include "toolhelp.h"
31 #include "winnt.h"
32 #include "winsock.h"
33 #include "thread.h"
34 #include "syslevel.h"
35 #include "debug.h"
36 #include "dosexe.h"
37 #include "dde_proc.h"
38 #include "server.h"
40 /* Min. number of thunks allocated when creating a new segment */
41 #define MIN_THUNKS 32
43 /* Pointer to function to switch to a larger stack */
44 int (*IF1632_CallLargeStack)( int (*func)(), void *arg ) = NULL;
47 static THHOOK DefaultThhook = { 0 };
48 THHOOK *pThhook = &DefaultThhook;
50 #define hCurrentTask (pThhook->CurTDB)
51 #define hFirstTask (pThhook->HeadTDB)
52 #define hLockedTask (pThhook->LockTDB)
54 static HTASK16 hTaskToKill = 0;
55 static UINT16 nTaskCount = 0;
57 static void TASK_YieldToSystem(TDB*);
59 extern BOOL32 THREAD_InitDone;
62 /***********************************************************************
63 * TASK_InstallTHHook
65 void TASK_InstallTHHook( THHOOK *pNewThhook )
67 THHOOK *pOldThhook = pThhook;
69 pThhook = pNewThhook? pNewThhook : &DefaultThhook;
71 *pThhook = *pOldThhook;
74 /***********************************************************************
75 * TASK_GetNextTask
77 HTASK16 TASK_GetNextTask( HTASK16 hTask )
79 TDB* pTask = (TDB*)GlobalLock16(hTask);
81 if (pTask->hNext) return pTask->hNext;
82 return (hFirstTask != hTask) ? hFirstTask : 0;
85 /***********************************************************************
86 * TASK_LinkTask
88 static void TASK_LinkTask( HTASK16 hTask )
90 HTASK16 *prevTask;
91 TDB *pTask;
93 if (!(pTask = (TDB *)GlobalLock16( hTask ))) return;
94 prevTask = &hFirstTask;
95 while (*prevTask)
97 TDB *prevTaskPtr = (TDB *)GlobalLock16( *prevTask );
98 if (prevTaskPtr->priority >= pTask->priority) break;
99 prevTask = &prevTaskPtr->hNext;
101 pTask->hNext = *prevTask;
102 *prevTask = hTask;
103 nTaskCount++;
107 /***********************************************************************
108 * TASK_UnlinkTask
110 static void TASK_UnlinkTask( HTASK16 hTask )
112 HTASK16 *prevTask;
113 TDB *pTask;
115 prevTask = &hFirstTask;
116 while (*prevTask && (*prevTask != hTask))
118 pTask = (TDB *)GlobalLock16( *prevTask );
119 prevTask = &pTask->hNext;
121 if (*prevTask)
123 pTask = (TDB *)GlobalLock16( *prevTask );
124 *prevTask = pTask->hNext;
125 pTask->hNext = 0;
126 nTaskCount--;
131 /***********************************************************************
132 * TASK_CreateThunks
134 * Create a thunk free-list in segment 'handle', starting from offset 'offset'
135 * and containing 'count' entries.
137 static void TASK_CreateThunks( HGLOBAL16 handle, WORD offset, WORD count )
139 int i;
140 WORD free;
141 THUNKS *pThunk;
143 pThunk = (THUNKS *)((BYTE *)GlobalLock16( handle ) + offset);
144 pThunk->next = 0;
145 pThunk->magic = THUNK_MAGIC;
146 pThunk->free = (int)&pThunk->thunks - (int)pThunk;
147 free = pThunk->free;
148 for (i = 0; i < count-1; i++)
150 free += 8; /* Offset of next thunk */
151 pThunk->thunks[4*i] = free;
153 pThunk->thunks[4*i] = 0; /* Last thunk */
157 /***********************************************************************
158 * TASK_AllocThunk
160 * Allocate a thunk for MakeProcInstance().
162 static SEGPTR TASK_AllocThunk( HTASK16 hTask )
164 TDB *pTask;
165 THUNKS *pThunk;
166 WORD sel, base;
168 if (!(pTask = (TDB *)GlobalLock16( hTask ))) return 0;
169 sel = pTask->hCSAlias;
170 pThunk = &pTask->thunks;
171 base = (int)pThunk - (int)pTask;
172 while (!pThunk->free)
174 sel = pThunk->next;
175 if (!sel) /* Allocate a new segment */
177 sel = GLOBAL_Alloc( GMEM_FIXED, sizeof(THUNKS) + (MIN_THUNKS-1)*8,
178 pTask->hPDB, TRUE, FALSE, FALSE );
179 if (!sel) return (SEGPTR)0;
180 TASK_CreateThunks( sel, 0, MIN_THUNKS );
181 pThunk->next = sel;
183 pThunk = (THUNKS *)GlobalLock16( sel );
184 base = 0;
186 base += pThunk->free;
187 pThunk->free = *(WORD *)((BYTE *)pThunk + pThunk->free);
188 return PTR_SEG_OFF_TO_SEGPTR( sel, base );
192 /***********************************************************************
193 * TASK_FreeThunk
195 * Free a MakeProcInstance() thunk.
197 static BOOL32 TASK_FreeThunk( HTASK16 hTask, SEGPTR thunk )
199 TDB *pTask;
200 THUNKS *pThunk;
201 WORD sel, base;
203 if (!(pTask = (TDB *)GlobalLock16( hTask ))) return 0;
204 sel = pTask->hCSAlias;
205 pThunk = &pTask->thunks;
206 base = (int)pThunk - (int)pTask;
207 while (sel && (sel != HIWORD(thunk)))
209 sel = pThunk->next;
210 pThunk = (THUNKS *)GlobalLock16( sel );
211 base = 0;
213 if (!sel) return FALSE;
214 *(WORD *)((BYTE *)pThunk + LOWORD(thunk) - base) = pThunk->free;
215 pThunk->free = LOWORD(thunk) - base;
216 return TRUE;
220 /***********************************************************************
221 * TASK_CallToStart
223 * 32-bit entry point for a new task. This function is responsible for
224 * setting up the registers and jumping to the 16-bit entry point.
226 static void TASK_CallToStart(void)
228 TDB *pTask = (TDB *)GlobalLock16( GetCurrentTask() );
229 NE_MODULE *pModule = NE_GetPtr( pTask->hModule );
230 SEGTABLEENTRY *pSegTable = NE_SEG_TABLE( pModule );
232 SET_CUR_THREAD( pTask->thdb );
233 CLIENT_InitThread();
235 /* Terminate the stack frame chain */
236 memset(THREAD_STACK16( pTask->thdb ), '\0', sizeof(STACK16FRAME));
238 if (pModule->flags & NE_FFLAGS_WIN32)
240 /* FIXME: all this is an ugly hack */
242 LPTHREAD_START_ROUTINE entry = (LPTHREAD_START_ROUTINE)
243 RVA_PTR(pModule->module32, OptionalHeader.AddressOfEntryPoint);
244 DWORD size = PE_HEADER(pModule->module32)->OptionalHeader.SizeOfStackReserve;
245 DWORD id;
246 THDB *thdb;
248 pTask->userhandler = (USERSIGNALPROC)&USER_SignalProc;
249 if (pModule->heap_size)
250 LocalInit( pTask->hInstance, 0, pModule->heap_size );
252 InitApp( pTask->hModule );
253 MODULE_InitializeDLLs( PROCESS_Current(), 0, DLL_PROCESS_ATTACH, (LPVOID)-1 );
254 TRACE(relay, "(entryproc=%p)\n", entry );
256 #if 1
257 ExitProcess( entry(NULL) );
258 #else
259 CreateThread( NULL, size, entry, NULL, 0, &id );
260 thdb = THREAD_ID_TO_THDB( id );
262 while ( thdb->exit_code == 0x103 )
264 WaitEvent( 0 );
265 QUEUE_Signal( pTask->hSelf );
268 ExitProcess( thdb->exit_code );
269 #endif
271 else if (pModule->dos_image)
273 DOSVM_Enter( NULL );
274 ExitProcess( 0 );
276 else
278 /* Registers at initialization must be:
279 * ax zero
280 * bx stack size in bytes
281 * cx heap size in bytes
282 * si previous app instance
283 * di current app instance
284 * bp zero
285 * es selector to the PSP
286 * ds dgroup of the application
287 * ss stack selector
288 * sp top of the stack
290 CONTEXT context;
292 memset( &context, 0, sizeof(context) );
293 CS_reg(&context) = GlobalHandleToSel(pSegTable[pModule->cs - 1].hSeg);
294 DS_reg(&context) = GlobalHandleToSel(pSegTable[pModule->dgroup - 1].hSeg);
295 ES_reg(&context) = pTask->hPDB;
296 EIP_reg(&context) = pModule->ip;
297 EBX_reg(&context) = pModule->stack_size;
298 ECX_reg(&context) = pModule->heap_size;
299 EDI_reg(&context) = context.SegDs;
301 TRACE(task, "Starting main program: cs:ip=%04lx:%04x ds=%04lx ss:sp=%04x:%04x\n",
302 CS_reg(&context), IP_reg(&context), DS_reg(&context),
303 SELECTOROF(pTask->thdb->cur_stack),
304 OFFSETOF(pTask->thdb->cur_stack) );
306 Callbacks->CallRegisterShortProc( &context, 0 );
307 /* This should never return */
308 ERR( task, "Main program returned! (should never happen)\n" );
309 ExitProcess( 1 );
314 /***********************************************************************
315 * TASK_Create
317 * NOTE: This routine might be called by a Win32 thread. We don't have
318 * any real problems with that, since we operated merely on a private
319 * TDB structure that is not yet linked into the task list.
321 HTASK16 TASK_Create( THDB *thdb, NE_MODULE *pModule, HINSTANCE16 hInstance,
322 HINSTANCE16 hPrevInstance, UINT16 cmdShow)
324 HTASK16 hTask;
325 TDB *pTask;
326 LPSTR cmd_line;
327 WORD sp;
328 char *stack32Top;
329 char name[10];
330 STACK16FRAME *frame16;
331 STACK32FRAME *frame32;
332 PDB32 *pdb32 = thdb->process;
333 SEGTABLEENTRY *pSegTable = NE_SEG_TABLE( pModule );
335 /* Allocate the task structure */
337 hTask = GLOBAL_Alloc( GMEM_FIXED | GMEM_ZEROINIT, sizeof(TDB),
338 pModule->self, FALSE, FALSE, FALSE );
339 if (!hTask) return 0;
340 pTask = (TDB *)GlobalLock16( hTask );
342 /* Fill the task structure */
344 pTask->nEvents = 1; /* So the task can be started */
345 pTask->hSelf = hTask;
346 pTask->flags = 0;
348 if (pModule->flags & NE_FFLAGS_WIN32)
349 pTask->flags |= TDBF_WIN32;
350 if (pModule->lpDosTask)
351 pTask->flags |= TDBF_WINOLDAP;
353 pTask->version = pModule->expected_version;
354 pTask->hInstance = hInstance;
355 pTask->hPrevInstance = hPrevInstance;
356 pTask->hModule = pModule->self;
357 pTask->hParent = GetCurrentTask();
358 pTask->magic = TDB_MAGIC;
359 pTask->nCmdShow = cmdShow;
360 pTask->thdb = thdb;
361 pTask->curdrive = DRIVE_GetCurrentDrive() | 0x80;
362 strcpy( pTask->curdir, "\\" );
363 lstrcpyn32A( pTask->curdir + 1, DRIVE_GetDosCwd( DRIVE_GetCurrentDrive() ),
364 sizeof(pTask->curdir) - 1 );
366 /* Create the thunks block */
368 TASK_CreateThunks( hTask, (int)&pTask->thunks - (int)pTask, 7 );
370 /* Copy the module name */
372 GetModuleName( pModule->self, name, sizeof(name) );
373 strncpy( pTask->module_name, name, sizeof(pTask->module_name) );
375 /* Allocate a selector for the PDB */
377 pTask->hPDB = GLOBAL_CreateBlock( GMEM_FIXED, &pTask->pdb, sizeof(PDB),
378 pModule->self, FALSE, FALSE, FALSE, NULL );
380 /* Fill the PDB */
382 pTask->pdb.int20 = 0x20cd;
383 pTask->pdb.dispatcher[0] = 0x9a; /* ljmp */
384 PUT_DWORD(&pTask->pdb.dispatcher[1], (DWORD)NE_GetEntryPoint(
385 GetModuleHandle16("KERNEL"), 102 )); /* KERNEL.102 is DOS3Call() */
386 pTask->pdb.savedint22 = INT_GetPMHandler( 0x22 );
387 pTask->pdb.savedint23 = INT_GetPMHandler( 0x23 );
388 pTask->pdb.savedint24 = INT_GetPMHandler( 0x24 );
389 pTask->pdb.fileHandlesPtr =
390 PTR_SEG_OFF_TO_SEGPTR( GlobalHandleToSel(pTask->hPDB),
391 (int)&((PDB *)0)->fileHandles );
392 pTask->pdb.hFileHandles = 0;
393 memset( pTask->pdb.fileHandles, 0xff, sizeof(pTask->pdb.fileHandles) );
394 pTask->pdb.environment = pdb32->env_db->env_sel;
395 pTask->pdb.nbFiles = 20;
397 /* Fill the command line */
399 cmd_line = pdb32->env_db->cmd_line;
400 while (*cmd_line && (*cmd_line != ' ') && (*cmd_line != '\t')) cmd_line++;
401 while ((*cmd_line == ' ') || (*cmd_line == '\t')) cmd_line++;
402 lstrcpyn32A( pTask->pdb.cmdLine+1, cmd_line, sizeof(pTask->pdb.cmdLine)-1);
403 pTask->pdb.cmdLine[0] = strlen( pTask->pdb.cmdLine + 1 );
405 /* Get the compatibility flags */
407 pTask->compat_flags = GetProfileInt32A( "Compatibility", name, 0 );
409 /* Allocate a code segment alias for the TDB */
411 pTask->hCSAlias = GLOBAL_CreateBlock( GMEM_FIXED, (void *)pTask,
412 sizeof(TDB), pTask->hPDB, TRUE,
413 FALSE, FALSE, NULL );
415 /* Set the owner of the environment block */
417 FarSetOwner( pTask->pdb.environment, pTask->hPDB );
419 /* Default DTA overwrites command-line */
421 pTask->dta = PTR_SEG_OFF_TO_SEGPTR( pTask->hPDB,
422 (int)&pTask->pdb.cmdLine - (int)&pTask->pdb );
424 /* Create the 16-bit stack frame */
426 if (!(sp = pModule->sp))
427 sp = pSegTable[pModule->ss-1].minsize + pModule->stack_size;
428 sp &= ~1;
429 pTask->thdb->cur_stack = PTR_SEG_OFF_TO_SEGPTR( pTask->hInstance, sp );
430 pTask->thdb->cur_stack -= 2*sizeof(STACK16FRAME);
431 frame16 = (STACK16FRAME *)PTR_SEG_TO_LIN( pTask->thdb->cur_stack );
432 frame16->ebp = sp + (int)&((STACK16FRAME *)0)->bp;
433 frame16->bp = LOWORD(frame16->ebp);
434 frame16->ds = frame16->es = pTask->hInstance;
435 frame16->fs = 0;
436 frame16->entry_point = 0;
437 frame16->entry_cs = 0;
438 frame16->mutex_count = 1; /* TASK_Reschedule is called from 16-bit code */
439 /* The remaining fields will be initialized in TASK_Reschedule */
441 /* Create the 32-bit stack frame */
443 stack32Top = (char*)pTask->thdb->teb.stack_top;
444 frame16->frame32 = frame32 = (STACK32FRAME *)stack32Top - 1;
445 frame32->frame16 = pTask->thdb->cur_stack + sizeof(STACK16FRAME);
446 frame32->edi = 0;
447 frame32->esi = 0;
448 frame32->edx = 0;
449 frame32->ecx = 0;
450 frame32->ebx = 0;
451 frame32->retaddr = (DWORD)TASK_CallToStart;
452 /* The remaining fields will be initialized in TASK_Reschedule */
454 if (!THREAD_Current()->cur_stack)
455 THREAD_Current()->cur_stack = pTask->thdb->cur_stack;
458 TRACE(task, "module='%s' cmdline='%s' task=%04x\n",
459 name, cmd_line, hTask );
461 return hTask;
464 /***********************************************************************
465 * TASK_StartTask
467 * NOTE: This routine might be called by a Win32 thread. Thus, we need
468 * to be careful to protect global data structures. We do this
469 * by entering the Win16Lock while linking the task into the
470 * global task list.
472 void TASK_StartTask( HTASK16 hTask )
474 /* Add the task to the linked list */
476 SYSLEVEL_EnterWin16Lock();
477 TASK_LinkTask( hTask );
478 SYSLEVEL_LeaveWin16Lock();
480 TRACE(task, "linked task %04x\n", hTask );
482 /* Get the task up and running. If we ourselves are a 16-bit task,
483 we simply Yield(). If we are 32-bit however, we need to signal
484 the main process somehow (NOT YET IMPLEMENTED!) */
486 if ( GetCurrentTask() )
487 if ( THREAD_IsWin16( THREAD_Current() ) )
488 Yield16();
489 else
490 FIXME(task, "Don't know how to start 16-bit task from 32-bit thread. Move the mouse!\n");
494 /***********************************************************************
495 * TASK_DeleteTask
497 static void TASK_DeleteTask( HTASK16 hTask )
499 TDB *pTask;
500 HGLOBAL16 hPDB;
502 if (!(pTask = (TDB *)GlobalLock16( hTask ))) return;
503 hPDB = pTask->hPDB;
505 pTask->magic = 0xdead; /* invalidate signature */
507 /* Delete the Win32 part of the task */
509 K32OBJ_DecCount( &pTask->thdb->process->header );
510 K32OBJ_DecCount( &pTask->thdb->header );
512 /* Free the task module */
514 FreeModule16( pTask->hModule );
516 /* Free the selector aliases */
518 GLOBAL_FreeBlock( pTask->hCSAlias );
519 GLOBAL_FreeBlock( pTask->hPDB );
521 /* Free the task structure itself */
523 GlobalFree16( hTask );
525 /* Free all memory used by this task (including the 32-bit stack, */
526 /* the environment block and the thunk segments). */
528 GlobalFreeAll( hPDB );
532 /***********************************************************************
533 * TASK_KillCurrentTask
535 * Kill the currently running task. As it's not possible to kill the
536 * current task like this, it is simply marked for destruction, and will
537 * be killed when either TASK_Reschedule or this function is called again
538 * in the context of another task.
540 void TASK_KillCurrentTask( INT16 exitCode )
542 TDB* pTask = (TDB*) GlobalLock16( GetCurrentTask() );
543 NE_MODULE* pModule = NE_GetPtr( pTask->hModule );
544 if (!pTask) USER_ExitWindows(); /* No current task yet */
546 if ( !THREAD_IsWin16( THREAD_Current() ) )
548 FIXME(task, "called for Win32 thread (%04x)!\n", THREAD_Current()->teb_sel);
549 return;
552 /* Enter the Win16Lock to protect global data structures
553 NOTE: We never explicitly leave it again. This shouldn't matter
554 though, as it will be released in TASK_Reschedule and this
555 task won't ever get scheduled again ... */
557 SYSLEVEL_EnterWin16Lock();
559 assert(hCurrentTask == GetCurrentTask());
561 TRACE(task, "Killing task %04x\n", hCurrentTask );
563 /* Delete active sockets */
565 if( pTask->pwsi )
566 WINSOCK_DeleteTaskWSI( pTask, pTask->pwsi );
568 #ifdef MZ_SUPPORTED
569 /* Kill DOS VM task */
570 if ( pModule->lpDosTask )
571 MZ_KillModule( pModule->lpDosTask );
572 #endif
574 /* Perform USER cleanup */
576 if (pTask->userhandler)
577 pTask->userhandler( hCurrentTask, USIG_TERMINATION, 0,
578 pTask->hInstance, pTask->hQueue );
580 if (hTaskToKill && (hTaskToKill != hCurrentTask))
582 /* If another task is already marked for destruction, */
583 /* we can kill it now, as we are in another context. */
584 TASK_DeleteTask( hTaskToKill );
587 if (nTaskCount <= 1)
589 TRACE(task, "this is the last task, exiting\n" );
590 USER_ExitWindows();
593 /* Remove the task from the list to be sure we never switch back to it */
594 TASK_UnlinkTask( hCurrentTask );
595 if( nTaskCount )
597 TDB* p = (TDB *)GlobalLock16( hFirstTask );
598 while( p )
600 if( p->hYieldTo == hCurrentTask ) p->hYieldTo = 0;
601 p = (TDB *)GlobalLock16( p->hNext );
605 hTaskToKill = hCurrentTask;
606 hLockedTask = 0;
608 pTask->nEvents = 0;
609 TASK_YieldToSystem(pTask);
611 /* We should never return from this Yield() */
613 ERR(task,"Return of the living dead %04x!!!\n", hCurrentTask);
614 exit(1);
617 /***********************************************************************
618 * TASK_Reschedule
620 * This is where all the magic of task-switching happens!
622 * Note: This function should only be called via the TASK_YieldToSystem()
623 * wrapper, to make sure that all the context is saved correctly.
625 * It must not call functions that may yield control.
627 void TASK_Reschedule(void)
629 TDB *pOldTask = NULL, *pNewTask;
630 HTASK16 hTask = 0;
631 STACK16FRAME *newframe16;
633 /* NOTE: As we are entered from 16-bit code, we hold the Win16Lock.
634 We hang onto it thoughout most of this routine, so that accesses
635 to global variables (most notably the task list) are protected. */
636 assert(hCurrentTask == GetCurrentTask());
638 TRACE(task, "entered with hTask %04x (pid %d)\n", hCurrentTask, getpid());
640 #ifdef CONFIG_IPC
641 /* FIXME: What about the Win16Lock ??? */
642 dde_reschedule();
643 #endif
644 /* First check if there's a task to kill */
646 if (hTaskToKill && (hTaskToKill != hCurrentTask))
648 TASK_DeleteTask( hTaskToKill );
649 hTaskToKill = 0;
652 /* Find a task to yield to */
654 pOldTask = (TDB *)GlobalLock16( hCurrentTask );
655 if (pOldTask && pOldTask->hYieldTo)
657 /* check for DirectedYield() */
659 hTask = pOldTask->hYieldTo;
660 pNewTask = (TDB *)GlobalLock16( hTask );
661 if( !pNewTask || !pNewTask->nEvents) hTask = 0;
662 pOldTask->hYieldTo = 0;
665 /* extract hardware events only! */
667 if (!hTask) EVENT_WaitNetEvent( FALSE, TRUE );
669 while (!hTask)
671 /* Find a task that has an event pending */
673 hTask = hFirstTask;
674 while (hTask)
676 pNewTask = (TDB *)GlobalLock16( hTask );
678 TRACE(task, "\ttask = %04x, events = %i\n", hTask, pNewTask->nEvents);
680 if (pNewTask->nEvents) break;
681 hTask = pNewTask->hNext;
683 if (hLockedTask && (hTask != hLockedTask)) hTask = 0;
684 if (hTask) break;
686 /* No task found, wait for some events to come in */
688 /* NOTE: We release the Win16Lock while waiting for events. This is to enable
689 Win32 threads to thunk down to 16-bit temporarily. Since Win16
690 tasks won't execute and Win32 threads are not allowed to enter
691 TASK_Reschedule anyway, there should be no re-entrancy problem ... */
693 SYSLEVEL_ReleaseWin16Lock();
694 EVENT_WaitNetEvent( TRUE, TRUE );
695 SYSLEVEL_RestoreWin16Lock();
698 if (hTask == hCurrentTask)
700 TRACE(task, "returning to the current task(%04x)\n", hTask );
701 return; /* Nothing to do */
703 pNewTask = (TDB *)GlobalLock16( hTask );
704 TRACE(task, "Switching to task %04x (%.8s)\n",
705 hTask, pNewTask->module_name );
707 /* Make the task the last in the linked list (round-robin scheduling) */
709 pNewTask->priority++;
710 TASK_UnlinkTask( hTask );
711 TASK_LinkTask( hTask );
712 pNewTask->priority--;
714 /* Finish initializing the new task stack if necessary */
716 newframe16 = THREAD_STACK16( pNewTask->thdb );
717 if (!newframe16->entry_cs)
719 STACK16FRAME *oldframe16 = CURRENT_STACK16;
720 STACK32FRAME *oldframe32 = oldframe16->frame32;
721 STACK32FRAME *newframe32 = newframe16->frame32;
722 newframe16->entry_ip = oldframe16->entry_ip;
723 newframe16->entry_cs = oldframe16->entry_cs;
724 newframe16->ip = oldframe16->ip;
725 newframe16->cs = oldframe16->cs;
726 newframe32->ebp = oldframe32->ebp;
727 newframe32->restore_addr = oldframe32->restore_addr;
728 newframe32->codeselector = oldframe32->codeselector;
731 /* Switch to the new stack */
733 /* NOTE: We need to release/restore the Win16Lock, as the task
734 switched to might be at another recursion level than
735 the old task ... */
737 SYSLEVEL_ReleaseWin16Lock();
739 hCurrentTask = hTask;
740 SET_CUR_THREAD( pNewTask->thdb );
741 pNewTask->ss_sp = pNewTask->thdb->cur_stack;
743 SYSLEVEL_RestoreWin16Lock();
747 /***********************************************************************
748 * TASK_YieldToSystem
750 * Scheduler interface, this way we ensure that all "unsafe" events are
751 * processed outside the scheduler.
753 void TASK_YieldToSystem(TDB* pTask)
755 MESSAGEQUEUE* pQ;
757 if ( !THREAD_IsWin16( THREAD_Current() ) )
759 FIXME(task, "called for Win32 thread (%04x)!\n", THREAD_Current()->teb_sel);
760 return;
763 Callbacks->CallTaskRescheduleProc();
765 if( pTask )
767 pQ = (MESSAGEQUEUE*)GlobalLock16(pTask->hQueue);
768 if( pQ && pQ->flags & QUEUE_FLAG_XEVENT &&
769 !(pQ->wakeBits & (QS_SENDMESSAGE | QS_SMRESULT)) )
771 pQ->flags &= ~QUEUE_FLAG_XEVENT;
772 EVENT_WaitNetEvent( FALSE, FALSE );
778 /***********************************************************************
779 * InitTask (KERNEL.91)
781 * Called by the application startup code.
783 void WINAPI InitTask( CONTEXT *context )
785 TDB *pTask;
786 NE_MODULE *pModule;
787 SEGTABLEENTRY *pSegTable;
788 INSTANCEDATA *pinstance;
789 LONG stacklow, stackhi;
791 if (context) EAX_reg(context) = 0;
792 if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return;
793 if (!(pModule = NE_GetPtr( pTask->hModule ))) return;
795 /* This is a hack to install task USER signal handler before
796 * implicitly loaded DLLs are initialized (see windows/user.c) */
798 pTask->userhandler = (USERSIGNALPROC)&USER_SignalProc;
800 /* Initialize implicitly loaded DLLs */
801 NE_InitializeDLLs( pTask->hModule );
803 if (context)
805 /* Registers on return are:
806 * ax 1 if OK, 0 on error
807 * cx stack limit in bytes
808 * dx cmdShow parameter
809 * si instance handle of the previous instance
810 * di instance handle of the new task
811 * es:bx pointer to command-line inside PSP
813 * 0 (=%bp) is pushed on the stack
815 SEGPTR ptr = STACK16_PUSH( pTask->thdb, sizeof(WORD) );
816 *(WORD *)PTR_SEG_TO_LIN(ptr) = 0;
817 SP_reg(context) -= 2;
819 EAX_reg(context) = 1;
821 if (!pTask->pdb.cmdLine[0]) EBX_reg(context) = 0x80;
822 else
824 LPBYTE p = &pTask->pdb.cmdLine[1];
825 while ((*p == ' ') || (*p == '\t')) p++;
826 EBX_reg(context) = 0x80 + (p - pTask->pdb.cmdLine);
828 ECX_reg(context) = pModule->stack_size;
829 EDX_reg(context) = pTask->nCmdShow;
830 ESI_reg(context) = (DWORD)pTask->hPrevInstance;
831 EDI_reg(context) = (DWORD)pTask->hInstance;
832 ES_reg (context) = (WORD)pTask->hPDB;
835 /* Initialize the local heap */
836 if ( pModule->heap_size )
838 LocalInit( pTask->hInstance, 0, pModule->heap_size );
841 /* Initialize the INSTANCEDATA structure */
842 pSegTable = NE_SEG_TABLE( pModule );
843 stacklow = pSegTable[pModule->ss - 1].minsize;
844 stackhi = stacklow + pModule->stack_size;
845 if (stackhi > 0xffff) stackhi = 0xffff;
846 pinstance = (INSTANCEDATA *)PTR_SEG_OFF_TO_LIN(CURRENT_DS, 0);
847 pinstance->stackbottom = stackhi; /* yup, that's right. Confused me too. */
848 pinstance->stacktop = stacklow;
849 pinstance->stackmin = OFFSETOF( pTask->thdb->cur_stack );
853 /***********************************************************************
854 * WaitEvent (KERNEL.30)
856 BOOL16 WINAPI WaitEvent( HTASK16 hTask )
858 TDB *pTask;
860 if (!hTask) hTask = GetCurrentTask();
861 pTask = (TDB *)GlobalLock16( hTask );
863 if ( !THREAD_IsWin16( THREAD_Current() ) )
865 FIXME(task, "called for Win32 thread (%04x)!\n", THREAD_Current()->teb_sel);
866 return TRUE;
869 if (pTask->nEvents > 0)
871 pTask->nEvents--;
872 return FALSE;
874 TASK_YieldToSystem(pTask);
876 /* When we get back here, we have an event */
878 if (pTask->nEvents > 0) pTask->nEvents--;
879 return TRUE;
883 /***********************************************************************
884 * PostEvent (KERNEL.31)
886 void WINAPI PostEvent( HTASK16 hTask )
888 TDB *pTask;
890 if (!hTask) hTask = GetCurrentTask();
891 if (!(pTask = (TDB *)GlobalLock16( hTask ))) return;
893 if ( !THREAD_IsWin16( THREAD_Current() ) )
895 WARN(task, "called for Win32 thread (%04x)!\n", THREAD_Current()->teb_sel);
896 /* return; */
899 pTask->nEvents++;
903 /***********************************************************************
904 * SetPriority (KERNEL.32)
906 void WINAPI SetPriority( HTASK16 hTask, INT16 delta )
908 TDB *pTask;
909 INT16 newpriority;
911 if (!hTask) hTask = GetCurrentTask();
912 if (!(pTask = (TDB *)GlobalLock16( hTask ))) return;
913 newpriority = pTask->priority + delta;
914 if (newpriority < -32) newpriority = -32;
915 else if (newpriority > 15) newpriority = 15;
917 pTask->priority = newpriority + 1;
918 TASK_UnlinkTask( hTask );
919 TASK_LinkTask( hTask );
920 pTask->priority--;
924 /***********************************************************************
925 * LockCurrentTask (KERNEL.33)
927 HTASK16 WINAPI LockCurrentTask( BOOL16 bLock )
929 if (bLock) hLockedTask = GetCurrentTask();
930 else hLockedTask = 0;
931 return hLockedTask;
935 /***********************************************************************
936 * IsTaskLocked (KERNEL.122)
938 HTASK16 WINAPI IsTaskLocked(void)
940 return hLockedTask;
944 /***********************************************************************
945 * OldYield (KERNEL.117)
947 void WINAPI OldYield(void)
949 TDB *pCurTask = (TDB *)GlobalLock16( GetCurrentTask() );
951 if ( !THREAD_IsWin16( THREAD_Current() ) )
953 FIXME(task, "called for Win32 thread (%04x)!\n", THREAD_Current()->teb_sel);
954 return;
957 if (pCurTask) pCurTask->nEvents++; /* Make sure we get back here */
958 TASK_YieldToSystem(pCurTask);
959 if (pCurTask) pCurTask->nEvents--;
963 /***********************************************************************
964 * DirectedYield (KERNEL.150)
966 void WINAPI DirectedYield( HTASK16 hTask )
968 TDB *pCurTask = (TDB *)GlobalLock16( GetCurrentTask() );
970 if ( !THREAD_IsWin16( THREAD_Current() ) )
972 FIXME(task, "called for Win32 thread (%04x)!\n", THREAD_Current()->teb_sel);
973 return;
976 TRACE(task, "%04x: DirectedYield(%04x)\n", pCurTask->hSelf, hTask );
978 pCurTask->hYieldTo = hTask;
979 OldYield();
981 TRACE(task, "%04x: back from DirectedYield(%04x)\n", pCurTask->hSelf, hTask );
985 /***********************************************************************
986 * UserYield (USER.332)
988 void WINAPI UserYield(void)
990 TDB *pCurTask = (TDB *)GlobalLock16( GetCurrentTask() );
991 MESSAGEQUEUE *queue = (MESSAGEQUEUE *)GlobalLock16( pCurTask->hQueue );
993 if ( !THREAD_IsWin16( THREAD_Current() ) )
995 FIXME(task, "called for Win32 thread (%04x)!\n", THREAD_Current()->teb_sel);
996 return;
999 /* Handle sent messages */
1000 while (queue && (queue->wakeBits & QS_SENDMESSAGE))
1001 QUEUE_ReceiveMessage( queue );
1003 OldYield();
1005 queue = (MESSAGEQUEUE *)GlobalLock16( pCurTask->hQueue );
1006 while (queue && (queue->wakeBits & QS_SENDMESSAGE))
1007 QUEUE_ReceiveMessage( queue );
1011 /***********************************************************************
1012 * Yield16 (KERNEL.29)
1014 void WINAPI Yield16(void)
1016 TDB *pCurTask = (TDB *)GlobalLock16( GetCurrentTask() );
1018 if ( !THREAD_IsWin16( THREAD_Current() ) )
1020 FIXME(task, "called for Win32 thread (%04x)!\n", THREAD_Current()->teb_sel);
1021 return;
1024 if (pCurTask) pCurTask->hYieldTo = 0;
1025 if (pCurTask && pCurTask->hQueue) UserYield();
1026 else OldYield();
1030 /***********************************************************************
1031 * MakeProcInstance16 (KERNEL.51)
1033 FARPROC16 WINAPI MakeProcInstance16( FARPROC16 func, HANDLE16 hInstance )
1035 BYTE *thunk,*lfunc;
1036 SEGPTR thunkaddr;
1038 if (!func) {
1039 ERR(task, "Ouch ! MakeProcInstance called with func == NULL !\n");
1040 return (FARPROC16)0; /* Windows seems to do the same */
1042 if (!hInstance) hInstance = CURRENT_DS;
1043 thunkaddr = TASK_AllocThunk( GetCurrentTask() );
1044 if (!thunkaddr) return (FARPROC16)0;
1045 thunk = PTR_SEG_TO_LIN( thunkaddr );
1046 lfunc = PTR_SEG_TO_LIN( func );
1048 TRACE(task, "(%08lx,%04x): got thunk %08lx\n",
1049 (DWORD)func, hInstance, (DWORD)thunkaddr );
1050 if (((lfunc[0]==0x8c) && (lfunc[1]==0xd8)) ||
1051 ((lfunc[0]==0x1e) && (lfunc[1]==0x58))
1053 FIXME(task,"thunk would be useless for %p, overwriting with nop;nop;\n", func );
1054 lfunc[0]=0x90; /* nop */
1055 lfunc[1]=0x90; /* nop */
1058 *thunk++ = 0xb8; /* movw instance, %ax */
1059 *thunk++ = (BYTE)(hInstance & 0xff);
1060 *thunk++ = (BYTE)(hInstance >> 8);
1061 *thunk++ = 0xea; /* ljmp func */
1062 *(DWORD *)thunk = (DWORD)func;
1063 return (FARPROC16)thunkaddr;
1067 /***********************************************************************
1068 * FreeProcInstance16 (KERNEL.52)
1070 void WINAPI FreeProcInstance16( FARPROC16 func )
1072 TRACE(task, "(%08lx)\n", (DWORD)func );
1073 TASK_FreeThunk( GetCurrentTask(), (SEGPTR)func );
1077 /**********************************************************************
1078 * GetCodeHandle (KERNEL.93)
1080 HANDLE16 WINAPI GetCodeHandle( FARPROC16 proc )
1082 HANDLE16 handle;
1083 BYTE *thunk = (BYTE *)PTR_SEG_TO_LIN( proc );
1085 /* Return the code segment containing 'proc'. */
1086 /* Not sure if this is really correct (shouldn't matter that much). */
1088 /* Check if it is really a thunk */
1089 if ((thunk[0] == 0xb8) && (thunk[3] == 0xea))
1090 handle = GlobalHandle16( thunk[6] + (thunk[7] << 8) );
1091 else
1092 handle = GlobalHandle16( HIWORD(proc) );
1094 return handle;
1097 /**********************************************************************
1098 * GetCodeInfo (KERNEL.104)
1100 VOID WINAPI GetCodeInfo( FARPROC16 proc, SEGINFO *segInfo )
1102 BYTE *thunk = (BYTE *)PTR_SEG_TO_LIN( proc );
1103 NE_MODULE *pModule = NULL;
1104 SEGTABLEENTRY *pSeg = NULL;
1105 WORD segNr;
1107 /* proc is either a thunk, or else a pair of module handle
1108 and segment number. In the first case, we also need to
1109 extract module and segment number. */
1111 if ((thunk[0] == 0xb8) && (thunk[3] == 0xea))
1113 WORD selector = thunk[6] + (thunk[7] << 8);
1114 pModule = NE_GetPtr( GlobalHandle16( selector ) );
1115 pSeg = pModule? NE_SEG_TABLE( pModule ) : NULL;
1117 if ( pModule )
1118 for ( segNr = 0; segNr < pModule->seg_count; segNr++, pSeg++ )
1119 if ( GlobalHandleToSel(pSeg->hSeg) == selector )
1120 break;
1122 if ( pModule && segNr >= pModule->seg_count )
1123 pSeg = NULL;
1125 else
1127 pModule = NE_GetPtr( HIWORD( proc ) );
1128 segNr = LOWORD( proc );
1130 if ( pModule && segNr < pModule->seg_count )
1131 pSeg = NE_SEG_TABLE( pModule ) + segNr;
1134 /* fill in segment information */
1136 segInfo->offSegment = pSeg? pSeg->filepos : 0;
1137 segInfo->cbSegment = pSeg? pSeg->size : 0;
1138 segInfo->flags = pSeg? pSeg->flags : 0;
1139 segInfo->cbAlloc = pSeg? pSeg->minsize : 0;
1140 segInfo->h = pSeg? pSeg->hSeg : 0;
1141 segInfo->alignShift = pModule? pModule->alignment : 0;
1145 /**********************************************************************
1146 * DefineHandleTable16 (KERNEL.94)
1148 BOOL16 WINAPI DefineHandleTable16( WORD wOffset )
1150 return TRUE; /* FIXME */
1154 /***********************************************************************
1155 * SetTaskQueue (KERNEL.34)
1157 HQUEUE16 WINAPI SetTaskQueue( HTASK16 hTask, HQUEUE16 hQueue )
1159 HQUEUE16 hPrev;
1160 TDB *pTask;
1162 if (!hTask) hTask = GetCurrentTask();
1163 if (!(pTask = (TDB *)GlobalLock16( hTask ))) return 0;
1165 hPrev = pTask->hQueue;
1166 pTask->hQueue = hQueue;
1168 TIMER_SwitchQueue( hPrev, hQueue );
1170 return hPrev;
1174 /***********************************************************************
1175 * GetTaskQueue (KERNEL.35)
1177 HQUEUE16 WINAPI GetTaskQueue( HTASK16 hTask )
1179 TDB *pTask;
1181 if (!hTask) hTask = GetCurrentTask();
1182 if (!(pTask = (TDB *)GlobalLock16( hTask ))) return 0;
1183 return pTask->hQueue;
1186 /***********************************************************************
1187 * SetThreadQueue (KERNEL.463)
1189 HQUEUE16 WINAPI SetThreadQueue( DWORD thread, HQUEUE16 hQueue )
1191 THDB *thdb = THREAD_IdToTHDB( thread );
1192 HQUEUE16 oldQueue = thdb? thdb->teb.queue : 0;
1194 if ( thdb )
1196 thdb->teb.queue = hQueue;
1198 if ( GetTaskQueue( thdb->process->task ) == oldQueue )
1199 SetTaskQueue( thdb->process->task, hQueue );
1202 return oldQueue;
1205 /***********************************************************************
1206 * GetThreadQueue (KERNEL.464)
1208 HQUEUE16 WINAPI GetThreadQueue( DWORD thread )
1210 THDB *thdb = THREAD_IdToTHDB( thread );
1211 return (HQUEUE16)(thdb? thdb->teb.queue : 0);
1214 /***********************************************************************
1215 * SetFastQueue (KERNEL.624)
1217 VOID WINAPI SetFastQueue( DWORD thread, HANDLE32 hQueue )
1219 THDB *thdb = THREAD_IdToTHDB( thread );
1220 if ( thdb ) thdb->teb.queue = (HQUEUE16) hQueue;
1223 /***********************************************************************
1224 * GetFastQueue (KERNEL.625)
1226 HANDLE32 WINAPI GetFastQueue( void )
1228 THDB *thdb = THREAD_Current();
1229 if (!thdb) return 0;
1231 if (!(thdb->teb.queue))
1232 FIXME( task, "(): should initialize thread-local queue, expect failure!\n" );
1234 return (HANDLE32)thdb->teb.queue;
1237 /***********************************************************************
1238 * SwitchStackTo (KERNEL.108)
1240 void WINAPI SwitchStackTo( WORD seg, WORD ptr, WORD top )
1242 TDB *pTask;
1243 STACK16FRAME *oldFrame, *newFrame;
1244 INSTANCEDATA *pData;
1245 UINT16 copySize;
1247 if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return;
1248 if (!(pData = (INSTANCEDATA *)GlobalLock16( seg ))) return;
1249 TRACE(task, "old=%04x:%04x new=%04x:%04x\n",
1250 SELECTOROF( pTask->thdb->cur_stack ),
1251 OFFSETOF( pTask->thdb->cur_stack ), seg, ptr );
1253 /* Save the old stack */
1255 oldFrame = THREAD_STACK16( pTask->thdb );
1256 /* pop frame + args and push bp */
1257 pData->old_ss_sp = pTask->thdb->cur_stack + sizeof(STACK16FRAME)
1258 + 2 * sizeof(WORD);
1259 *(WORD *)PTR_SEG_TO_LIN(pData->old_ss_sp) = oldFrame->bp;
1260 pData->stacktop = top;
1261 pData->stackmin = ptr;
1262 pData->stackbottom = ptr;
1264 /* Switch to the new stack */
1266 /* Note: we need to take the 3 arguments into account; otherwise,
1267 * the stack will underflow upon return from this function.
1269 copySize = oldFrame->bp - OFFSETOF(pData->old_ss_sp);
1270 copySize += 3 * sizeof(WORD) + sizeof(STACK16FRAME);
1271 pTask->thdb->cur_stack = PTR_SEG_OFF_TO_SEGPTR( seg, ptr - copySize );
1272 newFrame = THREAD_STACK16( pTask->thdb );
1274 /* Copy the stack frame and the local variables to the new stack */
1276 memmove( newFrame, oldFrame, copySize );
1277 newFrame->bp = ptr;
1278 *(WORD *)PTR_SEG_OFF_TO_LIN( seg, ptr ) = 0; /* clear previous bp */
1282 /***********************************************************************
1283 * SwitchStackBack (KERNEL.109)
1285 void WINAPI SwitchStackBack( CONTEXT *context )
1287 TDB *pTask;
1288 STACK16FRAME *oldFrame, *newFrame;
1289 INSTANCEDATA *pData;
1291 if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return;
1292 if (!(pData = (INSTANCEDATA *)GlobalLock16(SELECTOROF(pTask->thdb->cur_stack))))
1293 return;
1294 if (!pData->old_ss_sp)
1296 WARN( task, "No previous SwitchStackTo\n" );
1297 return;
1299 TRACE(task, "restoring stack %04x:%04x\n",
1300 SELECTOROF(pData->old_ss_sp), OFFSETOF(pData->old_ss_sp) );
1302 oldFrame = THREAD_STACK16( pTask->thdb );
1304 /* Pop bp from the previous stack */
1306 BP_reg(context) = *(WORD *)PTR_SEG_TO_LIN(pData->old_ss_sp);
1307 pData->old_ss_sp += sizeof(WORD);
1309 /* Switch back to the old stack */
1311 pTask->thdb->cur_stack = pData->old_ss_sp - sizeof(STACK16FRAME);
1312 SS_reg(context) = SELECTOROF(pData->old_ss_sp);
1313 ESP_reg(context) = OFFSETOF(pData->old_ss_sp) - sizeof(DWORD); /*ret addr*/
1314 pData->old_ss_sp = 0;
1316 /* Build a stack frame for the return */
1318 newFrame = THREAD_STACK16( pTask->thdb );
1319 newFrame->frame32 = oldFrame->frame32;
1320 if (TRACE_ON(relay))
1322 newFrame->entry_ip = oldFrame->entry_ip;
1323 newFrame->entry_cs = oldFrame->entry_cs;
1328 /***********************************************************************
1329 * GetTaskQueueDS (KERNEL.118)
1331 void WINAPI GetTaskQueueDS( CONTEXT *context )
1333 DS_reg(context) = GlobalHandleToSel( GetTaskQueue(0) );
1337 /***********************************************************************
1338 * GetTaskQueueES (KERNEL.119)
1340 void WINAPI GetTaskQueueES( CONTEXT *context )
1342 ES_reg(context) = GlobalHandleToSel( GetTaskQueue(0) );
1346 /***********************************************************************
1347 * GetCurrentTask (KERNEL.36)
1349 HTASK16 WINAPI GetCurrentTask(void)
1351 return THREAD_InitDone? PROCESS_Current()->task : 0;
1354 DWORD WINAPI WIN16_GetCurrentTask(void)
1356 /* This is the version used by relay code; the first task is */
1357 /* returned in the high word of the result */
1358 return MAKELONG( GetCurrentTask(), hFirstTask );
1362 /***********************************************************************
1363 * GetCurrentPDB (KERNEL.37)
1365 HANDLE16 WINAPI GetCurrentPDB(void)
1367 TDB *pTask;
1369 if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return 0;
1370 return pTask->hPDB;
1374 /***********************************************************************
1375 * GetInstanceData (KERNEL.54)
1377 INT16 WINAPI GetInstanceData( HINSTANCE16 instance, WORD buffer, INT16 len )
1379 char *ptr = (char *)GlobalLock16( instance );
1380 if (!ptr || !len) return 0;
1381 if ((int)buffer + len >= 0x10000) len = 0x10000 - buffer;
1382 memcpy( (char *)GlobalLock16(CURRENT_DS) + buffer, ptr + buffer, len );
1383 return len;
1387 /***********************************************************************
1388 * GetExeVersion (KERNEL.105)
1390 WORD WINAPI GetExeVersion(void)
1392 TDB *pTask;
1394 if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return 0;
1395 return pTask->version;
1399 /***********************************************************************
1400 * SetErrorMode16 (KERNEL.107)
1402 UINT16 WINAPI SetErrorMode16( UINT16 mode )
1404 TDB *pTask;
1405 UINT16 oldMode;
1407 if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return 0;
1408 oldMode = pTask->error_mode;
1409 pTask->error_mode = mode;
1410 pTask->thdb->process->error_mode = mode;
1411 return oldMode;
1415 /***********************************************************************
1416 * SetErrorMode32 (KERNEL32.486)
1418 UINT32 WINAPI SetErrorMode32( UINT32 mode )
1420 return SetErrorMode16( (UINT16)mode );
1424 /***********************************************************************
1425 * GetDOSEnvironment (KERNEL.131)
1427 SEGPTR WINAPI GetDOSEnvironment(void)
1429 TDB *pTask;
1431 if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return 0;
1432 return PTR_SEG_OFF_TO_SEGPTR( pTask->pdb.environment, 0 );
1436 /***********************************************************************
1437 * GetNumTasks (KERNEL.152)
1439 UINT16 WINAPI GetNumTasks(void)
1441 return nTaskCount;
1445 /***********************************************************************
1446 * GetTaskDS (KERNEL.155)
1448 * Note: this function apparently returns a DWORD with LOWORD == HIWORD.
1449 * I don't think we need to bother with this.
1451 HINSTANCE16 WINAPI GetTaskDS(void)
1453 TDB *pTask;
1455 if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return 0;
1456 return pTask->hInstance;
1460 /***********************************************************************
1461 * IsTask (KERNEL.320)
1463 BOOL16 WINAPI IsTask( HTASK16 hTask )
1465 TDB *pTask;
1467 if (!(pTask = (TDB *)GlobalLock16( hTask ))) return FALSE;
1468 if (GlobalSize16( hTask ) < sizeof(TDB)) return FALSE;
1469 return (pTask->magic == TDB_MAGIC);
1473 /***********************************************************************
1474 * SetTaskSignalProc (KERNEL.38)
1476 * Real 16-bit interface is provided by the THUNK_SetTaskSignalProc.
1478 FARPROC16 WINAPI SetTaskSignalProc( HTASK16 hTask, FARPROC16 proc )
1480 TDB *pTask;
1481 FARPROC16 oldProc;
1483 if (!hTask) hTask = GetCurrentTask();
1484 if (!(pTask = (TDB *)GlobalLock16( hTask ))) return NULL;
1485 oldProc = (FARPROC16)pTask->userhandler;
1486 pTask->userhandler = (USERSIGNALPROC)proc;
1487 return oldProc;
1491 /***********************************************************************
1492 * SetSigHandler (KERNEL.140)
1494 WORD WINAPI SetSigHandler( FARPROC16 newhandler, FARPROC16* oldhandler,
1495 UINT16 *oldmode, UINT16 newmode, UINT16 flag )
1497 FIXME(task,"(%p,%p,%p,%d,%d), unimplemented.\n",
1498 newhandler,oldhandler,oldmode,newmode,flag );
1500 if (flag != 1) return 0;
1501 if (!newmode) newhandler = NULL; /* Default handler */
1502 if (newmode != 4)
1504 TDB *pTask;
1506 if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return 0;
1507 if (oldmode) *oldmode = pTask->signal_flags;
1508 pTask->signal_flags = newmode;
1509 if (oldhandler) *oldhandler = pTask->sighandler;
1510 pTask->sighandler = newhandler;
1512 return 0;
1516 /***********************************************************************
1517 * GlobalNotify (KERNEL.154)
1519 VOID WINAPI GlobalNotify( FARPROC16 proc )
1521 TDB *pTask;
1523 if (!(pTask = (TDB *)GlobalLock16( GetCurrentTask() ))) return;
1524 pTask->discardhandler = proc;
1528 /***********************************************************************
1529 * GetExePtr (KERNEL.133)
1531 static HMODULE16 GetExePtrHelper( HANDLE16 handle, HTASK16 *hTask )
1533 char *ptr;
1534 HANDLE16 owner;
1536 /* Check for module handle */
1538 if (!(ptr = GlobalLock16( handle ))) return 0;
1539 if (((NE_MODULE *)ptr)->magic == IMAGE_OS2_SIGNATURE) return handle;
1541 /* Search for this handle inside all tasks */
1543 *hTask = hFirstTask;
1544 while (*hTask)
1546 TDB *pTask = (TDB *)GlobalLock16( *hTask );
1547 if ((*hTask == handle) ||
1548 (pTask->hInstance == handle) ||
1549 (pTask->hQueue == handle) ||
1550 (pTask->hPDB == handle)) return pTask->hModule;
1551 *hTask = pTask->hNext;
1554 /* Check the owner for module handle */
1556 owner = FarGetOwner( handle );
1557 if (!(ptr = GlobalLock16( owner ))) return 0;
1558 if (((NE_MODULE *)ptr)->magic == IMAGE_OS2_SIGNATURE) return owner;
1560 /* Search for the owner inside all tasks */
1562 *hTask = hFirstTask;
1563 while (*hTask)
1565 TDB *pTask = (TDB *)GlobalLock16( *hTask );
1566 if ((*hTask == owner) ||
1567 (pTask->hInstance == owner) ||
1568 (pTask->hQueue == owner) ||
1569 (pTask->hPDB == owner)) return pTask->hModule;
1570 *hTask = pTask->hNext;
1573 return 0;
1576 HMODULE16 WINAPI GetExePtr( HANDLE16 handle )
1578 HTASK16 dummy;
1579 return GetExePtrHelper( handle, &dummy );
1582 void WINAPI WIN16_GetExePtr( CONTEXT *context )
1584 WORD *stack = PTR_SEG_OFF_TO_LIN(SS_reg(context), SP_reg(context));
1585 HANDLE16 handle = (HANDLE16)stack[2];
1586 HTASK16 hTask = 0;
1587 HMODULE16 hModule;
1589 hModule = GetExePtrHelper( handle, &hTask );
1591 AX_reg(context) = CX_reg(context) = hModule;
1592 if (hTask) ES_reg(context) = hTask;
1595 /***********************************************************************
1596 * TaskFirst (TOOLHELP.63)
1598 BOOL16 WINAPI TaskFirst( TASKENTRY *lpte )
1600 lpte->hNext = hFirstTask;
1601 return TaskNext( lpte );
1605 /***********************************************************************
1606 * TaskNext (TOOLHELP.64)
1608 BOOL16 WINAPI TaskNext( TASKENTRY *lpte )
1610 TDB *pTask;
1611 INSTANCEDATA *pInstData;
1613 TRACE(toolhelp, "(%p): task=%04x\n", lpte, lpte->hNext );
1614 if (!lpte->hNext) return FALSE;
1615 pTask = (TDB *)GlobalLock16( lpte->hNext );
1616 if (!pTask || pTask->magic != TDB_MAGIC) return FALSE;
1617 pInstData = (INSTANCEDATA *)PTR_SEG_OFF_TO_LIN( pTask->hInstance, 0 );
1618 lpte->hTask = lpte->hNext;
1619 lpte->hTaskParent = pTask->hParent;
1620 lpte->hInst = pTask->hInstance;
1621 lpte->hModule = pTask->hModule;
1622 lpte->wSS = SELECTOROF( pTask->thdb->cur_stack );
1623 lpte->wSP = OFFSETOF( pTask->thdb->cur_stack );
1624 lpte->wStackTop = pInstData->stacktop;
1625 lpte->wStackMinimum = pInstData->stackmin;
1626 lpte->wStackBottom = pInstData->stackbottom;
1627 lpte->wcEvents = pTask->nEvents;
1628 lpte->hQueue = pTask->hQueue;
1629 strncpy( lpte->szModule, pTask->module_name, 8 );
1630 lpte->szModule[8] = '\0';
1631 lpte->wPSPOffset = 0x100; /*??*/
1632 lpte->hNext = pTask->hNext;
1633 return TRUE;
1637 /***********************************************************************
1638 * TaskFindHandle (TOOLHELP.65)
1640 BOOL16 WINAPI TaskFindHandle( TASKENTRY *lpte, HTASK16 hTask )
1642 lpte->hNext = hTask;
1643 return TaskNext( lpte );
1647 /***********************************************************************
1648 * GetAppCompatFlags16 (KERNEL.354)
1650 DWORD WINAPI GetAppCompatFlags16( HTASK16 hTask )
1652 return GetAppCompatFlags32( hTask );
1656 /***********************************************************************
1657 * GetAppCompatFlags32 (USER32.206)
1659 DWORD WINAPI GetAppCompatFlags32( HTASK32 hTask )
1661 TDB *pTask;
1663 if (!hTask) hTask = GetCurrentTask();
1664 if (!(pTask=(TDB *)GlobalLock16( (HTASK16)hTask ))) return 0;
1665 if (GlobalSize16(hTask) < sizeof(TDB)) return 0;
1666 return pTask->compat_flags;