Added IHlinkTarget interface.
[wine/testsucceed.git] / dlls / kernel / task.c
blob72928b82999bba7bed852a4039a2e279d2808386
1 /*
2 * Task functions
4 * Copyright 1995 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "config.h"
22 #include "wine/port.h"
24 #include <stdarg.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <assert.h>
28 #ifdef HAVE_UNISTD_H
29 # include <unistd.h>
30 #endif
32 #include "windef.h"
33 #include "winbase.h"
34 #include "wingdi.h"
35 #include "winnt.h"
36 #include "wownt32.h"
37 #include "winuser.h"
39 #include "wine/winbase16.h"
40 #include "thread.h"
41 #include "winternl.h"
42 #include "wine/server.h"
43 #include "toolhelp.h"
44 #include "kernel_private.h"
45 #include "kernel16_private.h"
47 #include "wine/debug.h"
49 WINE_DEFAULT_DEBUG_CHANNEL(task);
50 WINE_DECLARE_DEBUG_CHANNEL(relay);
51 WINE_DECLARE_DEBUG_CHANNEL(toolhelp);
53 #include "pshpack1.h"
55 /* Segment containing MakeProcInstance() thunks */
56 typedef struct
58 WORD next; /* Selector of next segment */
59 WORD magic; /* Thunks signature */
60 WORD unused;
61 WORD free; /* Head of the free list */
62 WORD thunks[4]; /* Each thunk is 4 words long */
63 } THUNKS;
65 #include "poppack.h"
67 #define THUNK_MAGIC ('P' | ('T' << 8))
69 /* Min. number of thunks allocated when creating a new segment */
70 #define MIN_THUNKS 32
72 #define TDB_MAGIC ('T' | ('D' << 8))
74 static THHOOK DefaultThhook;
75 THHOOK *pThhook = &DefaultThhook;
77 #define hFirstTask (pThhook->HeadTDB)
78 #define hLockedTask (pThhook->LockTDB)
80 static UINT16 nTaskCount = 0;
82 static HTASK16 initial_task, main_task;
84 /***********************************************************************
85 * TASK_InstallTHHook
87 void TASK_InstallTHHook( THHOOK *pNewThhook )
89 THHOOK *pOldThhook = pThhook;
91 pThhook = pNewThhook? pNewThhook : &DefaultThhook;
93 *pThhook = *pOldThhook;
96 /***********************************************************************
97 * TASK_GetPtr
99 static TDB *TASK_GetPtr( HTASK16 hTask )
101 return GlobalLock16( hTask );
105 /***********************************************************************
106 * TASK_GetCurrent
108 TDB *TASK_GetCurrent(void)
110 return TASK_GetPtr( GetCurrentTask() );
114 /***********************************************************************
115 * TASK_LinkTask
117 static void TASK_LinkTask( HTASK16 hTask )
119 HTASK16 *prevTask;
120 TDB *pTask;
122 if (!(pTask = TASK_GetPtr( hTask ))) return;
123 prevTask = &hFirstTask;
124 while (*prevTask)
126 TDB *prevTaskPtr = TASK_GetPtr( *prevTask );
127 if (prevTaskPtr->priority >= pTask->priority) break;
128 prevTask = &prevTaskPtr->hNext;
130 pTask->hNext = *prevTask;
131 *prevTask = hTask;
132 nTaskCount++;
136 /***********************************************************************
137 * TASK_UnlinkTask
139 static void TASK_UnlinkTask( HTASK16 hTask )
141 HTASK16 *prevTask;
142 TDB *pTask;
144 prevTask = &hFirstTask;
145 while (*prevTask && (*prevTask != hTask))
147 pTask = TASK_GetPtr( *prevTask );
148 prevTask = &pTask->hNext;
150 if (*prevTask)
152 pTask = TASK_GetPtr( *prevTask );
153 *prevTask = pTask->hNext;
154 pTask->hNext = 0;
155 nTaskCount--;
160 /***********************************************************************
161 * TASK_CreateThunks
163 * Create a thunk free-list in segment 'handle', starting from offset 'offset'
164 * and containing 'count' entries.
166 static void TASK_CreateThunks( HGLOBAL16 handle, WORD offset, WORD count )
168 int i;
169 WORD free;
170 THUNKS *pThunk;
172 pThunk = (THUNKS *)((BYTE *)GlobalLock16( handle ) + offset);
173 pThunk->next = 0;
174 pThunk->magic = THUNK_MAGIC;
175 pThunk->free = (int)&pThunk->thunks - (int)pThunk;
176 free = pThunk->free;
177 for (i = 0; i < count-1; i++)
179 free += 8; /* Offset of next thunk */
180 pThunk->thunks[4*i] = free;
182 pThunk->thunks[4*i] = 0; /* Last thunk */
186 /***********************************************************************
187 * TASK_AllocThunk
189 * Allocate a thunk for MakeProcInstance().
191 static SEGPTR TASK_AllocThunk(void)
193 TDB *pTask;
194 THUNKS *pThunk;
195 WORD sel, base;
197 if (!(pTask = TASK_GetCurrent())) return 0;
198 sel = pTask->hCSAlias;
199 pThunk = (THUNKS *)&pTask->thunks;
200 base = (char *)pThunk - (char *)pTask;
201 while (!pThunk->free)
203 sel = pThunk->next;
204 if (!sel) /* Allocate a new segment */
206 sel = GLOBAL_Alloc( GMEM_FIXED, sizeof(THUNKS) + (MIN_THUNKS-1)*8,
207 pTask->hPDB, WINE_LDT_FLAGS_CODE );
208 if (!sel) return (SEGPTR)0;
209 TASK_CreateThunks( sel, 0, MIN_THUNKS );
210 pThunk->next = sel;
212 pThunk = (THUNKS *)GlobalLock16( sel );
213 base = 0;
215 base += pThunk->free;
216 pThunk->free = *(WORD *)((BYTE *)pThunk + pThunk->free);
217 return MAKESEGPTR( sel, base );
221 /***********************************************************************
222 * TASK_FreeThunk
224 * Free a MakeProcInstance() thunk.
226 static BOOL TASK_FreeThunk( SEGPTR thunk )
228 TDB *pTask;
229 THUNKS *pThunk;
230 WORD sel, base;
232 if (!(pTask = TASK_GetCurrent())) return 0;
233 sel = pTask->hCSAlias;
234 pThunk = (THUNKS *)&pTask->thunks;
235 base = (char *)pThunk - (char *)pTask;
236 while (sel && (sel != HIWORD(thunk)))
238 sel = pThunk->next;
239 pThunk = (THUNKS *)GlobalLock16( sel );
240 base = 0;
242 if (!sel) return FALSE;
243 *(WORD *)((BYTE *)pThunk + LOWORD(thunk) - base) = pThunk->free;
244 pThunk->free = LOWORD(thunk) - base;
245 return TRUE;
249 /***********************************************************************
250 * TASK_Create
252 * NOTE: This routine might be called by a Win32 thread. Thus, we need
253 * to be careful to protect global data structures. We do this
254 * by entering the Win16Lock while linking the task into the
255 * global task list.
257 static TDB *TASK_Create( NE_MODULE *pModule, UINT16 cmdShow, LPCSTR cmdline, BYTE len )
259 HTASK16 hTask;
260 TDB *pTask;
261 FARPROC16 proc;
262 char curdir[MAX_PATH];
263 HMODULE16 hModule = pModule ? pModule->self : 0;
265 /* Allocate the task structure */
267 hTask = GlobalAlloc16( GMEM_FIXED | GMEM_ZEROINIT, sizeof(TDB) );
268 if (!hTask) return NULL;
269 pTask = TASK_GetPtr( hTask );
270 FarSetOwner16( hTask, hModule );
272 /* Fill the task structure */
274 pTask->hSelf = hTask;
276 pTask->version = pModule ? pModule->ne_expver : 0x0400;
277 pTask->hModule = hModule;
278 pTask->hParent = GetCurrentTask();
279 pTask->magic = TDB_MAGIC;
280 pTask->nCmdShow = cmdShow;
282 GetCurrentDirectoryA( sizeof(curdir), curdir );
283 GetShortPathNameA( curdir, curdir, sizeof(curdir) );
284 pTask->curdrive = (curdir[0] - 'A') | 0x80;
285 lstrcpynA( pTask->curdir, curdir + 2, sizeof(pTask->curdir) );
287 /* Create the thunks block */
289 TASK_CreateThunks( hTask, (char *)&pTask->thunks - (char *)pTask, 7 );
291 /* Copy the module name */
293 if (hModule)
295 char name[sizeof(pTask->module_name)+1];
296 size_t len;
297 GetModuleName16( hModule, name, sizeof(name) );
298 len = strlen(name) + 1;
299 memcpy(pTask->module_name, name, min(len,sizeof(pTask->module_name)));
300 pTask->compat_flags = GetProfileIntA( "Compatibility", name, 0 );
303 /* Allocate a selector for the PDB */
305 pTask->hPDB = GLOBAL_CreateBlock( GMEM_FIXED, &pTask->pdb, sizeof(PDB16),
306 hModule, WINE_LDT_FLAGS_DATA );
308 /* Fill the PDB */
310 pTask->pdb.int20 = 0x20cd;
311 pTask->pdb.dispatcher[0] = 0x9a; /* ljmp */
312 proc = GetProcAddress16( GetModuleHandle16("KERNEL"), "DOS3Call" );
313 memcpy( &pTask->pdb.dispatcher[1], &proc, sizeof(proc) );
314 pTask->pdb.savedint22 = 0;
315 pTask->pdb.savedint23 = 0;
316 pTask->pdb.savedint24 = 0;
317 pTask->pdb.fileHandlesPtr =
318 MAKESEGPTR( GlobalHandleToSel16(pTask->hPDB), (int)&((PDB16 *)0)->fileHandles );
319 pTask->pdb.hFileHandles = 0;
320 memset( pTask->pdb.fileHandles, 0xff, sizeof(pTask->pdb.fileHandles) );
321 /* FIXME: should we make a copy of the environment? */
322 pTask->pdb.environment = SELECTOROF(GetDOSEnvironment16());
323 pTask->pdb.nbFiles = 20;
325 /* Fill the command line */
327 if (!cmdline)
329 cmdline = GetCommandLineA();
330 /* remove the first word (program name) */
331 if (*cmdline == '"')
332 if (!(cmdline = strchr( cmdline+1, '"' ))) cmdline = GetCommandLineA();
333 while (*cmdline && (*cmdline != ' ') && (*cmdline != '\t')) cmdline++;
334 while ((*cmdline == ' ') || (*cmdline == '\t')) cmdline++;
335 len = strlen(cmdline);
337 if (len >= sizeof(pTask->pdb.cmdLine)) len = sizeof(pTask->pdb.cmdLine)-1;
338 pTask->pdb.cmdLine[0] = len;
339 memcpy( pTask->pdb.cmdLine + 1, cmdline, len );
340 /* pTask->pdb.cmdLine[len+1] = 0; */
342 TRACE("cmdline='%.*s' task=%04x\n", len, cmdline, hTask );
344 /* Allocate a code segment alias for the TDB */
346 pTask->hCSAlias = GLOBAL_CreateBlock( GMEM_FIXED, (void *)pTask,
347 sizeof(TDB), pTask->hPDB, WINE_LDT_FLAGS_CODE );
349 /* Default DTA overwrites command line */
351 pTask->dta = MAKESEGPTR( pTask->hPDB, (int)&pTask->pdb.cmdLine - (int)&pTask->pdb );
353 /* Create scheduler event for 16-bit tasks */
355 if ( !(pTask->flags & TDBF_WIN32) )
356 NtCreateEvent( &pTask->hEvent, EVENT_ALL_ACCESS, NULL, TRUE, FALSE );
358 if (!initial_task) initial_task = hTask;
360 return pTask;
364 /***********************************************************************
365 * TASK_DeleteTask
367 static void TASK_DeleteTask( HTASK16 hTask )
369 TDB *pTask;
370 HGLOBAL16 hPDB;
372 if (!(pTask = TASK_GetPtr( hTask ))) return;
373 hPDB = pTask->hPDB;
375 pTask->magic = 0xdead; /* invalidate signature */
377 /* Free the selector aliases */
379 GLOBAL_FreeBlock( pTask->hCSAlias );
380 GLOBAL_FreeBlock( pTask->hPDB );
382 /* Free the task module */
384 FreeModule16( pTask->hModule );
386 /* Free the task structure itself */
388 GlobalFree16( hTask );
390 /* Free all memory used by this task (including the 32-bit stack, */
391 /* the environment block and the thunk segments). */
393 GlobalFreeAll16( hPDB );
397 /***********************************************************************
398 * TASK_CreateMainTask
400 * Create a task for the main (32-bit) process.
402 void TASK_CreateMainTask(void)
404 TDB *pTask;
405 STARTUPINFOA startup_info;
406 UINT cmdShow = 1; /* SW_SHOWNORMAL but we don't want to include winuser.h here */
408 GetStartupInfoA( &startup_info );
409 if (startup_info.dwFlags & STARTF_USESHOWWINDOW) cmdShow = startup_info.wShowWindow;
410 pTask = TASK_Create( NULL, cmdShow, NULL, 0 );
411 if (!pTask)
413 ERR("could not create task for main process\n");
414 ExitProcess(1);
417 pTask->flags |= TDBF_WIN32;
418 pTask->hInstance = 0;
419 pTask->hPrevInstance = 0;
420 pTask->teb = NtCurrentTeb();
422 /* Add the task to the linked list */
423 /* (no need to get the win16 lock, we are the only thread at this point) */
424 TASK_LinkTask( pTask->hSelf );
425 main_task = pTask->hSelf;
429 struct create_data
431 TDB *task;
432 WIN16_SUBSYSTEM_TIB *tib;
435 /* allocate the win16 TIB for a new 16-bit task */
436 static WIN16_SUBSYSTEM_TIB *allocate_win16_tib( TDB *pTask )
438 WCHAR path[MAX_PATH];
439 WIN16_SUBSYSTEM_TIB *tib;
440 UNICODE_STRING *curdir;
441 NE_MODULE *pModule = NE_GetPtr( pTask->hModule );
443 if (!(tib = HeapAlloc( GetProcessHeap(), 0, sizeof(*tib) ))) return NULL;
444 MultiByteToWideChar( CP_ACP, 0, NE_MODULE_NAME(pModule), -1, path, MAX_PATH );
445 GetLongPathNameW( path, path, MAX_PATH );
446 if (RtlCreateUnicodeString( &tib->exe_str, path )) tib->exe_name = &tib->exe_str;
447 else tib->exe_name = NULL;
449 RtlAcquirePebLock();
450 if (NtCurrentTeb()->Tib.SubSystemTib)
451 curdir = &((WIN16_SUBSYSTEM_TIB *)NtCurrentTeb()->Tib.SubSystemTib)->curdir.DosPath;
452 else
453 curdir = &NtCurrentTeb()->Peb->ProcessParameters->CurrentDirectory.DosPath;
454 tib->curdir.DosPath.MaximumLength = sizeof(tib->curdir_buffer);
455 tib->curdir.DosPath.Length = min( curdir->Length, tib->curdir.DosPath.MaximumLength-sizeof(WCHAR) );
456 tib->curdir.DosPath.Buffer = tib->curdir_buffer;
457 tib->curdir.Handle = 0;
458 memcpy( tib->curdir_buffer, curdir->Buffer, tib->curdir.DosPath.Length );
459 tib->curdir_buffer[tib->curdir.DosPath.Length/sizeof(WCHAR)] = 0;
460 RtlReleasePebLock();
461 return tib;
464 static inline void free_win16_tib( WIN16_SUBSYSTEM_TIB *tib )
466 if (tib->exe_name) RtlFreeUnicodeString( tib->exe_name );
467 HeapFree( GetProcessHeap(), 0, tib );
470 /* startup routine for a new 16-bit thread */
471 static DWORD CALLBACK task_start( LPVOID p )
473 struct create_data *data = p;
474 TDB *pTask = data->task;
475 DWORD ret;
477 kernel_get_thread_data()->htask16 = pTask->hSelf;
478 NtCurrentTeb()->Tib.SubSystemTib = data->tib;
479 HeapFree( GetProcessHeap(), 0, data );
481 _EnterWin16Lock();
482 TASK_LinkTask( pTask->hSelf );
483 pTask->teb = NtCurrentTeb();
484 ret = NE_StartTask();
485 _LeaveWin16Lock();
486 return ret;
490 /***********************************************************************
491 * TASK_SpawnTask
493 * Spawn a new 16-bit task.
495 HTASK16 TASK_SpawnTask( NE_MODULE *pModule, WORD cmdShow,
496 LPCSTR cmdline, BYTE len, HANDLE *hThread )
498 struct create_data *data = NULL;
499 WIN16_SUBSYSTEM_TIB *tib;
500 TDB *pTask;
502 if (!(pTask = TASK_Create( pModule, cmdShow, cmdline, len ))) return 0;
503 if (!(tib = allocate_win16_tib( pTask ))) goto failed;
504 if (!(data = HeapAlloc( GetProcessHeap(), 0, sizeof(*data)))) goto failed;
505 data->task = pTask;
506 data->tib = tib;
507 if (!(*hThread = CreateThread( NULL, 0, task_start, data, 0, NULL ))) goto failed;
508 return pTask->hSelf;
510 failed:
511 if (tib) free_win16_tib( tib );
512 HeapFree( GetProcessHeap(), 0, data );
513 TASK_DeleteTask( pTask->hSelf );
514 return 0;
518 /***********************************************************************
519 * TASK_GetTaskFromThread
521 HTASK16 TASK_GetTaskFromThread( DWORD thread )
523 TDB *p = TASK_GetPtr( hFirstTask );
524 while (p)
526 if (p->teb->ClientId.UniqueThread == (HANDLE)thread) return p->hSelf;
527 p = TASK_GetPtr( p->hNext );
529 return 0;
533 /***********************************************************************
534 * TASK_CallTaskSignalProc
536 static void TASK_CallTaskSignalProc( UINT16 uCode, HANDLE16 hTaskOrModule )
538 WORD args[5];
539 TDB *pTask = TASK_GetCurrent();
541 if ( !pTask || !pTask->userhandler ) return;
543 args[4] = hTaskOrModule;
544 args[3] = uCode;
545 args[2] = 0;
546 args[1] = pTask->hInstance;
547 args[0] = pTask->hQueue;
548 WOWCallback16Ex( (DWORD)pTask->userhandler, WCB16_PASCAL, sizeof(args), args, NULL );
552 /***********************************************************************
553 * TASK_ExitTask
555 void TASK_ExitTask(void)
557 WIN16_SUBSYSTEM_TIB *tib;
558 TDB *pTask;
559 DWORD lockCount;
561 /* Enter the Win16Lock to protect global data structures */
562 _EnterWin16Lock();
564 pTask = TASK_GetCurrent();
565 if ( !pTask )
567 _LeaveWin16Lock();
568 return;
571 TRACE("Killing task %04x\n", pTask->hSelf );
573 /* Perform USER cleanup */
575 TASK_CallTaskSignalProc( USIG16_TERMINATION, pTask->hSelf );
577 /* Remove the task from the list to be sure we never switch back to it */
578 TASK_UnlinkTask( pTask->hSelf );
580 if (!nTaskCount || (nTaskCount == 1 && hFirstTask == initial_task))
582 TRACE("this is the last task, exiting\n" );
583 ExitKernel16();
586 pTask->nEvents = 0;
588 if ( hLockedTask == pTask->hSelf )
589 hLockedTask = 0;
591 TASK_DeleteTask( pTask->hSelf );
593 if ((tib = NtCurrentTeb()->Tib.SubSystemTib))
595 free_win16_tib( tib );
596 NtCurrentTeb()->Tib.SubSystemTib = NULL;
599 /* ... and completely release the Win16Lock, just in case. */
600 ReleaseThunkLock( &lockCount );
604 /***********************************************************************
605 * ExitKernel (KERNEL.2)
607 * Clean-up everything and exit the Wine process.
609 void WINAPI ExitKernel16(void)
611 WriteOutProfiles16();
612 TerminateProcess( GetCurrentProcess(), 0 );
616 /***********************************************************************
617 * InitTask (KERNEL.91)
619 * Called by the application startup code.
621 void WINAPI InitTask16( CONTEXT86 *context )
623 TDB *pTask;
624 INSTANCEDATA *pinstance;
625 SEGPTR ptr;
627 context->Eax = 0;
628 if (!(pTask = TASK_GetCurrent())) return;
630 /* Note: we need to trust that BX/CX contain the stack/heap sizes,
631 as some apps, notably Visual Basic apps, *modify* the heap/stack
632 size of the instance data segment before calling InitTask() */
634 /* Initialize the INSTANCEDATA structure */
635 pinstance = MapSL( MAKESEGPTR(CURRENT_DS, 0) );
636 pinstance->stackmin = OFFSETOF(NtCurrentTeb()->WOW32Reserved) + sizeof( STACK16FRAME );
637 pinstance->stackbottom = pinstance->stackmin; /* yup, that's right. Confused me too. */
638 pinstance->stacktop = ( pinstance->stackmin > LOWORD(context->Ebx) ?
639 pinstance->stackmin - LOWORD(context->Ebx) : 0 ) + 150;
641 /* Initialize the local heap */
642 if (LOWORD(context->Ecx))
643 LocalInit16( GlobalHandleToSel16(pTask->hInstance), 0, LOWORD(context->Ecx) );
645 /* Initialize implicitly loaded DLLs */
646 NE_InitializeDLLs( pTask->hModule );
647 NE_DllProcessAttach( pTask->hModule );
649 /* Registers on return are:
650 * ax 1 if OK, 0 on error
651 * cx stack limit in bytes
652 * dx cmdShow parameter
653 * si instance handle of the previous instance
654 * di instance handle of the new task
655 * es:bx pointer to command line inside PSP
657 * 0 (=%bp) is pushed on the stack
659 ptr = stack16_push( sizeof(WORD) );
660 *(WORD *)MapSL(ptr) = 0;
661 context->Esp -= 2;
663 context->Eax = 1;
665 if (!pTask->pdb.cmdLine[0]) context->Ebx = 0x80;
666 else
668 LPBYTE p = &pTask->pdb.cmdLine[1];
669 while ((*p == ' ') || (*p == '\t')) p++;
670 context->Ebx = 0x80 + (p - pTask->pdb.cmdLine);
672 context->Ecx = pinstance->stacktop;
673 context->Edx = pTask->nCmdShow;
674 context->Esi = (DWORD)pTask->hPrevInstance;
675 context->Edi = (DWORD)pTask->hInstance;
676 context->SegEs = (WORD)pTask->hPDB;
680 /***********************************************************************
681 * WaitEvent (KERNEL.30)
683 BOOL16 WINAPI WaitEvent16( HTASK16 hTask )
685 TDB *pTask;
687 if (!hTask) hTask = GetCurrentTask();
688 pTask = TASK_GetPtr( hTask );
690 if (pTask->flags & TDBF_WIN32)
692 FIXME("called for Win32 thread (%04lx)!\n", GetCurrentThreadId());
693 return TRUE;
696 if (pTask->nEvents > 0)
698 pTask->nEvents--;
699 return FALSE;
702 if (pTask->teb == NtCurrentTeb())
704 DWORD lockCount;
706 NtResetEvent( pTask->hEvent, NULL );
707 ReleaseThunkLock( &lockCount );
708 SYSLEVEL_CheckNotLevel( 1 );
709 WaitForSingleObject( pTask->hEvent, INFINITE );
710 RestoreThunkLock( lockCount );
711 if (pTask->nEvents > 0) pTask->nEvents--;
713 else FIXME("for other task %04x cur=%04x\n",pTask->hSelf,GetCurrentTask());
715 return TRUE;
719 /***********************************************************************
720 * PostEvent (KERNEL.31)
722 void WINAPI PostEvent16( HTASK16 hTask )
724 TDB *pTask;
726 if (!hTask) hTask = GetCurrentTask();
727 if (!(pTask = TASK_GetPtr( hTask ))) return;
729 if (pTask->flags & TDBF_WIN32)
731 FIXME("called for Win32 thread (%04lx)!\n", (DWORD)pTask->teb->ClientId.UniqueThread );
732 return;
735 pTask->nEvents++;
737 if (pTask->nEvents == 1) NtSetEvent( pTask->hEvent, NULL );
741 /***********************************************************************
742 * SetPriority (KERNEL.32)
744 void WINAPI SetPriority16( HTASK16 hTask, INT16 delta )
746 TDB *pTask;
747 INT16 newpriority;
749 if (!hTask) hTask = GetCurrentTask();
750 if (!(pTask = TASK_GetPtr( hTask ))) return;
751 newpriority = pTask->priority + delta;
752 if (newpriority < -32) newpriority = -32;
753 else if (newpriority > 15) newpriority = 15;
755 pTask->priority = newpriority + 1;
756 TASK_UnlinkTask( pTask->hSelf );
757 TASK_LinkTask( pTask->hSelf );
758 pTask->priority--;
762 /***********************************************************************
763 * LockCurrentTask (KERNEL.33)
765 HTASK16 WINAPI LockCurrentTask16( BOOL16 bLock )
767 if (bLock) hLockedTask = GetCurrentTask();
768 else hLockedTask = 0;
769 return hLockedTask;
773 /***********************************************************************
774 * IsTaskLocked (KERNEL.122)
776 HTASK16 WINAPI IsTaskLocked16(void)
778 return hLockedTask;
782 /***********************************************************************
783 * OldYield (KERNEL.117)
785 void WINAPI OldYield16(void)
787 DWORD count;
789 ReleaseThunkLock(&count);
790 RestoreThunkLock(count);
793 /***********************************************************************
794 * WIN32_OldYield (KERNEL.447)
796 void WINAPI WIN32_OldYield16(void)
798 DWORD count;
800 ReleaseThunkLock(&count);
801 RestoreThunkLock(count);
804 /***********************************************************************
805 * DirectedYield (KERNEL.150)
807 void WINAPI DirectedYield16( HTASK16 hTask )
809 OldYield16();
812 /***********************************************************************
813 * Yield (KERNEL.29)
815 void WINAPI Yield16(void)
817 TDB *pCurTask = TASK_GetCurrent();
819 if (pCurTask && pCurTask->hQueue)
821 HMODULE mod = GetModuleHandleA( "user32.dll" );
822 if (mod)
824 FARPROC proc = GetProcAddress( mod, "UserYield16" );
825 if (proc)
827 proc();
828 return;
832 OldYield16();
835 /***********************************************************************
836 * KERNEL_490 (KERNEL.490)
838 HTASK16 WINAPI KERNEL_490( HTASK16 someTask )
840 if ( !someTask ) return 0;
842 FIXME("(%04x): stub\n", someTask );
843 return 0;
846 /***********************************************************************
847 * MakeProcInstance (KERNEL.51)
849 FARPROC16 WINAPI MakeProcInstance16( FARPROC16 func, HANDLE16 hInstance )
851 BYTE *thunk,*lfunc;
852 SEGPTR thunkaddr;
853 WORD hInstanceSelector;
855 hInstanceSelector = GlobalHandleToSel16(hInstance);
857 TRACE("(%08lx, %04x);\n", (DWORD)func, hInstance);
859 if (!HIWORD(func)) {
860 /* Win95 actually protects via SEH, but this is better for debugging */
861 WARN("Ouch ! Called with invalid func 0x%08lx !\n", (DWORD)func);
862 return (FARPROC16)0;
865 if ( (GlobalHandleToSel16(CURRENT_DS) != hInstanceSelector)
866 && (hInstance != 0)
867 && (hInstance != 0xffff) )
869 /* calling MPI with a foreign DSEG is invalid ! */
870 WARN("Problem with hInstance? Got %04x, using %04x instead\n",
871 hInstance,CURRENT_DS);
874 /* Always use the DSEG that MPI was entered with.
875 * We used to set hInstance to GetTaskDS16(), but this should be wrong
876 * as CURRENT_DS provides the DSEG value we need.
877 * ("calling" DS, *not* "task" DS !) */
878 hInstanceSelector = CURRENT_DS;
879 hInstance = GlobalHandle16(hInstanceSelector);
881 /* no thunking for DLLs */
882 if (NE_GetPtr(FarGetOwner16(hInstance))->ne_flags & NE_FFLAGS_LIBMODULE)
883 return func;
885 thunkaddr = TASK_AllocThunk();
886 if (!thunkaddr) return (FARPROC16)0;
887 thunk = MapSL( thunkaddr );
888 lfunc = MapSL( (SEGPTR)func );
890 TRACE("(%08lx,%04x): got thunk %08lx\n",
891 (DWORD)func, hInstance, (DWORD)thunkaddr );
892 if (((lfunc[0]==0x8c) && (lfunc[1]==0xd8)) || /* movw %ds, %ax */
893 ((lfunc[0]==0x1e) && (lfunc[1]==0x58)) /* pushw %ds, popw %ax */
895 WARN("This was the (in)famous \"thunk useless\" warning. We thought we have to overwrite with nop;nop;, but this isn't true.\n");
898 *thunk++ = 0xb8; /* movw instance, %ax */
899 *thunk++ = (BYTE)(hInstanceSelector & 0xff);
900 *thunk++ = (BYTE)(hInstanceSelector >> 8);
901 *thunk++ = 0xea; /* ljmp func */
902 *(DWORD *)thunk = (DWORD)func;
903 return (FARPROC16)thunkaddr;
904 /* CX reg indicates if thunkaddr != NULL, implement if needed */
908 /***********************************************************************
909 * FreeProcInstance (KERNEL.52)
911 void WINAPI FreeProcInstance16( FARPROC16 func )
913 TRACE("(%08lx)\n", (DWORD)func );
914 TASK_FreeThunk( (SEGPTR)func );
917 /**********************************************************************
918 * TASK_GetCodeSegment
920 * Helper function for GetCodeHandle/GetCodeInfo: Retrieve the module
921 * and logical segment number of a given code segment.
923 * 'proc' either *is* already a pair of module handle and segment number,
924 * in which case there's nothing to do. Otherwise, it is a pointer to
925 * a function, and we need to retrieve the code segment. If the pointer
926 * happens to point to a thunk, we'll retrieve info about the code segment
927 * where the function pointed to by the thunk resides, not the thunk itself.
929 * FIXME: if 'proc' is a SNOOP16 return stub, we should retrieve info about
930 * the function the snoop code will return to ...
933 static BOOL TASK_GetCodeSegment( FARPROC16 proc, NE_MODULE **ppModule,
934 SEGTABLEENTRY **ppSeg, int *pSegNr )
936 NE_MODULE *pModule = NULL;
937 SEGTABLEENTRY *pSeg = NULL;
938 int segNr=0;
940 /* Try pair of module handle / segment number */
941 pModule = (NE_MODULE *) GlobalLock16( HIWORD( proc ) );
942 if ( pModule && pModule->ne_magic == IMAGE_OS2_SIGNATURE )
944 segNr = LOWORD( proc );
945 if ( segNr && segNr <= pModule->ne_cseg )
946 pSeg = NE_SEG_TABLE( pModule ) + segNr-1;
949 /* Try thunk or function */
950 else
952 BYTE *thunk = MapSL( (SEGPTR)proc );
953 WORD selector;
955 if ((thunk[0] == 0xb8) && (thunk[3] == 0xea))
956 selector = thunk[6] + (thunk[7] << 8);
957 else
958 selector = HIWORD( proc );
960 pModule = NE_GetPtr( GlobalHandle16( selector ) );
961 pSeg = pModule? NE_SEG_TABLE( pModule ) : NULL;
963 if ( pModule )
964 for ( segNr = 1; segNr <= pModule->ne_cseg; segNr++, pSeg++ )
965 if ( GlobalHandleToSel16(pSeg->hSeg) == selector )
966 break;
968 if ( pModule && segNr > pModule->ne_cseg )
969 pSeg = NULL;
972 /* Abort if segment not found */
974 if ( !pModule || !pSeg )
975 return FALSE;
977 /* Return segment data */
979 if ( ppModule ) *ppModule = pModule;
980 if ( ppSeg ) *ppSeg = pSeg;
981 if ( pSegNr ) *pSegNr = segNr;
983 return TRUE;
986 /**********************************************************************
987 * GetCodeHandle (KERNEL.93)
989 HANDLE16 WINAPI GetCodeHandle16( FARPROC16 proc )
991 SEGTABLEENTRY *pSeg;
993 if ( !TASK_GetCodeSegment( proc, NULL, &pSeg, NULL ) )
994 return (HANDLE16)0;
996 return pSeg->hSeg;
999 /**********************************************************************
1000 * GetCodeInfo (KERNEL.104)
1002 BOOL16 WINAPI GetCodeInfo16( FARPROC16 proc, SEGINFO *segInfo )
1004 NE_MODULE *pModule;
1005 SEGTABLEENTRY *pSeg;
1006 int segNr;
1008 if ( !TASK_GetCodeSegment( proc, &pModule, &pSeg, &segNr ) )
1009 return FALSE;
1011 /* Fill in segment information */
1013 segInfo->offSegment = pSeg->filepos;
1014 segInfo->cbSegment = pSeg->size;
1015 segInfo->flags = pSeg->flags;
1016 segInfo->cbAlloc = pSeg->minsize;
1017 segInfo->h = pSeg->hSeg;
1018 segInfo->alignShift = pModule->ne_align;
1020 if ( segNr == pModule->ne_autodata )
1021 segInfo->cbAlloc += pModule->ne_heap + pModule->ne_stack;
1023 /* Return module handle in %es */
1025 CURRENT_STACK16->es = GlobalHandleToSel16( pModule->self );
1027 return TRUE;
1031 /**********************************************************************
1032 * DefineHandleTable (KERNEL.94)
1034 BOOL16 WINAPI DefineHandleTable16( WORD wOffset )
1036 FIXME("(%04x): stub ?\n", wOffset);
1037 return TRUE;
1041 /***********************************************************************
1042 * SetTaskQueue (KERNEL.34)
1044 HQUEUE16 WINAPI SetTaskQueue16( HTASK16 hTask, HQUEUE16 hQueue )
1046 FIXME( "stub, should not get called\n" );
1047 return 0xbeef;
1051 /***********************************************************************
1052 * GetTaskQueue (KERNEL.35)
1054 HQUEUE16 WINAPI GetTaskQueue16( HTASK16 hTask )
1056 FIXME( "stub, should not get called\n" );
1057 return 0xbeef;
1060 /***********************************************************************
1061 * SetThreadQueue (KERNEL.463)
1063 HQUEUE16 WINAPI SetThreadQueue16( DWORD thread, HQUEUE16 hQueue )
1065 FIXME( "stub, should not get called\n" );
1066 return 0xbeef;
1069 /***********************************************************************
1070 * GetThreadQueue (KERNEL.464)
1072 HQUEUE16 WINAPI GetThreadQueue16( DWORD thread )
1074 FIXME( "stub, should not get called\n" );
1075 return 0xbeef;
1078 /***********************************************************************
1079 * SetFastQueue (KERNEL.624)
1081 VOID WINAPI SetFastQueue16( DWORD thread, HQUEUE16 hQueue )
1083 FIXME( "stub, should not get called\n" );
1086 /***********************************************************************
1087 * GetFastQueue (KERNEL.625)
1089 HQUEUE16 WINAPI GetFastQueue16( void )
1091 FIXME( "stub, should not get called\n" );
1092 return 0xbeef;
1095 /***********************************************************************
1096 * SwitchStackTo (KERNEL.108)
1098 void WINAPI SwitchStackTo16( WORD seg, WORD ptr, WORD top )
1100 STACK16FRAME *oldFrame, *newFrame;
1101 INSTANCEDATA *pData;
1102 UINT16 copySize;
1104 if (!(pData = (INSTANCEDATA *)GlobalLock16( seg ))) return;
1105 TRACE("old=%04x:%04x new=%04x:%04x\n",
1106 SELECTOROF( NtCurrentTeb()->WOW32Reserved ),
1107 OFFSETOF( NtCurrentTeb()->WOW32Reserved ), seg, ptr );
1109 /* Save the old stack */
1111 oldFrame = CURRENT_STACK16;
1112 /* pop frame + args and push bp */
1113 pData->old_ss_sp = (SEGPTR)NtCurrentTeb()->WOW32Reserved + sizeof(STACK16FRAME)
1114 + 2 * sizeof(WORD);
1115 *(WORD *)MapSL(pData->old_ss_sp) = oldFrame->bp;
1116 pData->stacktop = top;
1117 pData->stackmin = ptr;
1118 pData->stackbottom = ptr;
1120 /* Switch to the new stack */
1122 /* Note: we need to take the 3 arguments into account; otherwise,
1123 * the stack will underflow upon return from this function.
1125 copySize = oldFrame->bp - OFFSETOF(pData->old_ss_sp);
1126 copySize += 3 * sizeof(WORD) + sizeof(STACK16FRAME);
1127 NtCurrentTeb()->WOW32Reserved = (void *)MAKESEGPTR( seg, ptr - copySize );
1128 newFrame = CURRENT_STACK16;
1130 /* Copy the stack frame and the local variables to the new stack */
1132 memmove( newFrame, oldFrame, copySize );
1133 newFrame->bp = ptr;
1134 *(WORD *)MapSL( MAKESEGPTR( seg, ptr ) ) = 0; /* clear previous bp */
1138 /***********************************************************************
1139 * SwitchStackBack (KERNEL.109)
1141 void WINAPI SwitchStackBack16( CONTEXT86 *context )
1143 STACK16FRAME *oldFrame, *newFrame;
1144 INSTANCEDATA *pData;
1146 if (!(pData = (INSTANCEDATA *)GlobalLock16(SELECTOROF(NtCurrentTeb()->WOW32Reserved))))
1147 return;
1148 if (!pData->old_ss_sp)
1150 WARN("No previous SwitchStackTo\n" );
1151 return;
1153 TRACE("restoring stack %04x:%04x\n",
1154 SELECTOROF(pData->old_ss_sp), OFFSETOF(pData->old_ss_sp) );
1156 oldFrame = CURRENT_STACK16;
1158 /* Pop bp from the previous stack */
1160 context->Ebp = (context->Ebp & ~0xffff) | *(WORD *)MapSL(pData->old_ss_sp);
1161 pData->old_ss_sp += sizeof(WORD);
1163 /* Switch back to the old stack */
1165 NtCurrentTeb()->WOW32Reserved = (void *)(pData->old_ss_sp - sizeof(STACK16FRAME));
1166 context->SegSs = SELECTOROF(pData->old_ss_sp);
1167 context->Esp = OFFSETOF(pData->old_ss_sp) - sizeof(DWORD); /*ret addr*/
1168 pData->old_ss_sp = 0;
1170 /* Build a stack frame for the return */
1172 newFrame = CURRENT_STACK16;
1173 newFrame->frame32 = oldFrame->frame32;
1174 newFrame->module_cs = oldFrame->module_cs;
1175 newFrame->callfrom_ip = oldFrame->callfrom_ip;
1176 newFrame->entry_ip = oldFrame->entry_ip;
1180 /***********************************************************************
1181 * GetTaskQueueDS (KERNEL.118)
1183 void WINAPI GetTaskQueueDS16(void)
1185 CURRENT_STACK16->ds = GlobalHandleToSel16( GetTaskQueue16(0) );
1189 /***********************************************************************
1190 * GetTaskQueueES (KERNEL.119)
1192 void WINAPI GetTaskQueueES16(void)
1194 CURRENT_STACK16->es = GlobalHandleToSel16( GetTaskQueue16(0) );
1198 /***********************************************************************
1199 * GetCurrentTask (KERNEL32.@)
1201 HTASK16 WINAPI GetCurrentTask(void)
1203 HTASK16 ret = kernel_get_thread_data()->htask16;
1204 if (!ret) ret = main_task;
1205 return ret;
1208 /***********************************************************************
1209 * GetCurrentTask (KERNEL.36)
1211 DWORD WINAPI WIN16_GetCurrentTask(void)
1213 /* This is the version used by relay code; the first task is */
1214 /* returned in the high word of the result */
1215 return MAKELONG( GetCurrentTask(), hFirstTask );
1219 /***********************************************************************
1220 * GetCurrentPDB (KERNEL.37)
1222 * UNDOC: returns PSP of KERNEL in high word
1224 DWORD WINAPI GetCurrentPDB16(void)
1226 TDB *pTask;
1228 if (!(pTask = TASK_GetCurrent())) return 0;
1229 return MAKELONG(pTask->hPDB, 0); /* FIXME */
1233 /***********************************************************************
1234 * GetCurPID (KERNEL.157)
1236 DWORD WINAPI GetCurPID16( DWORD unused )
1238 return 0;
1242 /***********************************************************************
1243 * GetInstanceData (KERNEL.54)
1245 INT16 WINAPI GetInstanceData16( HINSTANCE16 instance, WORD buffer, INT16 len )
1247 char *ptr = (char *)GlobalLock16( instance );
1248 if (!ptr || !len) return 0;
1249 if ((int)buffer + len >= 0x10000) len = 0x10000 - buffer;
1250 memcpy( (char *)GlobalLock16(CURRENT_DS) + buffer, ptr + buffer, len );
1251 return len;
1255 /***********************************************************************
1256 * GetExeVersion (KERNEL.105)
1258 WORD WINAPI GetExeVersion16(void)
1260 TDB *pTask;
1262 if (!(pTask = TASK_GetCurrent())) return 0;
1263 return pTask->version;
1267 /***********************************************************************
1268 * SetErrorMode (KERNEL.107)
1270 UINT16 WINAPI SetErrorMode16( UINT16 mode )
1272 TDB *pTask;
1273 if (!(pTask = TASK_GetCurrent())) return 0;
1274 pTask->error_mode = mode;
1275 return SetErrorMode( mode );
1279 /***********************************************************************
1280 * GetNumTasks (KERNEL.152)
1282 UINT16 WINAPI GetNumTasks16(void)
1284 return nTaskCount;
1288 /***********************************************************************
1289 * GetTaskDS (KERNEL.155)
1291 * Note: this function apparently returns a DWORD with LOWORD == HIWORD.
1292 * I don't think we need to bother with this.
1294 HINSTANCE16 WINAPI GetTaskDS16(void)
1296 TDB *pTask;
1298 if (!(pTask = TASK_GetCurrent())) return 0;
1299 return GlobalHandleToSel16(pTask->hInstance);
1302 /***********************************************************************
1303 * GetDummyModuleHandleDS (KERNEL.602)
1305 WORD WINAPI GetDummyModuleHandleDS16(void)
1307 TDB *pTask;
1308 WORD selector;
1310 if (!(pTask = TASK_GetCurrent())) return 0;
1311 if (!(pTask->flags & TDBF_WIN32)) return 0;
1312 selector = GlobalHandleToSel16( pTask->hModule );
1313 CURRENT_DS = selector;
1314 return selector;
1317 /***********************************************************************
1318 * IsTask (KERNEL.320)
1320 BOOL16 WINAPI IsTask16( HTASK16 hTask )
1322 TDB *pTask;
1324 if (!(pTask = TASK_GetPtr( hTask ))) return FALSE;
1325 if (GlobalSize16( hTask ) < sizeof(TDB)) return FALSE;
1326 return (pTask->magic == TDB_MAGIC);
1330 /***********************************************************************
1331 * IsWinOldApTask (KERNEL.158)
1333 BOOL16 WINAPI IsWinOldApTask16( HTASK16 hTask )
1335 /* should return bit 0 of byte 0x48 in PSP */
1336 return FALSE;
1339 /***********************************************************************
1340 * SetTaskSignalProc (KERNEL.38)
1342 FARPROC16 WINAPI SetTaskSignalProc( HTASK16 hTask, FARPROC16 proc )
1344 TDB *pTask;
1345 FARPROC16 oldProc;
1347 if (!hTask) hTask = GetCurrentTask();
1348 if (!(pTask = TASK_GetPtr( hTask ))) return NULL;
1349 oldProc = pTask->userhandler;
1350 pTask->userhandler = proc;
1351 return oldProc;
1354 /***********************************************************************
1355 * SetSigHandler (KERNEL.140)
1357 WORD WINAPI SetSigHandler16( FARPROC16 newhandler, FARPROC16* oldhandler,
1358 UINT16 *oldmode, UINT16 newmode, UINT16 flag )
1360 FIXME("(%p,%p,%p,%d,%d), unimplemented.\n",
1361 newhandler,oldhandler,oldmode,newmode,flag );
1363 if (flag != 1) return 0;
1364 if (!newmode) newhandler = NULL; /* Default handler */
1365 if (newmode != 4)
1367 TDB *pTask;
1369 if (!(pTask = TASK_GetCurrent())) return 0;
1370 if (oldmode) *oldmode = pTask->signal_flags;
1371 pTask->signal_flags = newmode;
1372 if (oldhandler) *oldhandler = pTask->sighandler;
1373 pTask->sighandler = newhandler;
1375 return 0;
1379 /***********************************************************************
1380 * GlobalNotify (KERNEL.154)
1382 * Note that GlobalNotify does _not_ return the old NotifyProc
1383 * -- contrary to LocalNotify !!
1385 VOID WINAPI GlobalNotify16( FARPROC16 proc )
1387 TDB *pTask;
1389 if (!(pTask = TASK_GetCurrent())) return;
1390 pTask->discardhandler = proc;
1394 /***********************************************************************
1395 * GetExePtrHelper
1397 static inline HMODULE16 GetExePtrHelper( HANDLE16 handle, HTASK16 *hTask )
1399 char *ptr;
1400 HANDLE16 owner;
1402 /* Check for module handle */
1404 if (!(ptr = GlobalLock16( handle ))) return 0;
1405 if (((NE_MODULE *)ptr)->ne_magic == IMAGE_OS2_SIGNATURE) return handle;
1407 /* Search for this handle inside all tasks */
1409 *hTask = hFirstTask;
1410 while (*hTask)
1412 TDB *pTask = TASK_GetPtr( *hTask );
1413 if ((*hTask == handle) ||
1414 (pTask->hInstance == handle) ||
1415 (pTask->hQueue == handle) ||
1416 (pTask->hPDB == handle)) return pTask->hModule;
1417 *hTask = pTask->hNext;
1420 /* Check the owner for module handle */
1422 owner = FarGetOwner16( handle );
1423 if (!(ptr = GlobalLock16( owner ))) return 0;
1424 if (((NE_MODULE *)ptr)->ne_magic == IMAGE_OS2_SIGNATURE) return owner;
1426 /* Search for the owner inside all tasks */
1428 *hTask = hFirstTask;
1429 while (*hTask)
1431 TDB *pTask = TASK_GetPtr( *hTask );
1432 if ((*hTask == owner) ||
1433 (pTask->hInstance == owner) ||
1434 (pTask->hQueue == owner) ||
1435 (pTask->hPDB == owner)) return pTask->hModule;
1436 *hTask = pTask->hNext;
1439 return 0;
1442 /***********************************************************************
1443 * GetExePtr (KERNEL.133)
1445 HMODULE16 WINAPI WIN16_GetExePtr( HANDLE16 handle )
1447 HTASK16 hTask = 0;
1448 HMODULE16 hModule = GetExePtrHelper( handle, &hTask );
1449 STACK16FRAME *frame = CURRENT_STACK16;
1450 frame->ecx = hModule;
1451 if (hTask) frame->es = hTask;
1452 return hModule;
1456 /***********************************************************************
1457 * K228 (KERNEL.228)
1459 HMODULE16 WINAPI GetExePtr( HANDLE16 handle )
1461 HTASK16 hTask = 0;
1462 return GetExePtrHelper( handle, &hTask );
1466 /***********************************************************************
1467 * TaskFirst (TOOLHELP.63)
1469 BOOL16 WINAPI TaskFirst16( TASKENTRY *lpte )
1471 lpte->hNext = hFirstTask;
1472 return TaskNext16( lpte );
1476 /***********************************************************************
1477 * TaskNext (TOOLHELP.64)
1479 BOOL16 WINAPI TaskNext16( TASKENTRY *lpte )
1481 TDB *pTask;
1482 INSTANCEDATA *pInstData;
1484 TRACE_(toolhelp)("(%p): task=%04x\n", lpte, lpte->hNext );
1485 if (!lpte->hNext) return FALSE;
1487 /* make sure that task and hInstance are valid (skip initial Wine task !) */
1488 while (1) {
1489 pTask = TASK_GetPtr( lpte->hNext );
1490 if (!pTask || pTask->magic != TDB_MAGIC) return FALSE;
1491 if (pTask->hInstance)
1492 break;
1493 lpte->hNext = pTask->hNext;
1495 pInstData = MapSL( MAKESEGPTR( GlobalHandleToSel16(pTask->hInstance), 0 ) );
1496 lpte->hTask = lpte->hNext;
1497 lpte->hTaskParent = pTask->hParent;
1498 lpte->hInst = pTask->hInstance;
1499 lpte->hModule = pTask->hModule;
1500 lpte->wSS = SELECTOROF( pTask->teb->WOW32Reserved );
1501 lpte->wSP = OFFSETOF( pTask->teb->WOW32Reserved );
1502 lpte->wStackTop = pInstData->stacktop;
1503 lpte->wStackMinimum = pInstData->stackmin;
1504 lpte->wStackBottom = pInstData->stackbottom;
1505 lpte->wcEvents = pTask->nEvents;
1506 lpte->hQueue = pTask->hQueue;
1507 lstrcpynA( lpte->szModule, pTask->module_name, sizeof(lpte->szModule) );
1508 lpte->wPSPOffset = 0x100; /*??*/
1509 lpte->hNext = pTask->hNext;
1510 return TRUE;
1514 /***********************************************************************
1515 * TaskFindHandle (TOOLHELP.65)
1517 BOOL16 WINAPI TaskFindHandle16( TASKENTRY *lpte, HTASK16 hTask )
1519 lpte->hNext = hTask;
1520 return TaskNext16( lpte );
1524 typedef INT (WINAPI *MessageBoxA_funcptr)(HWND hWnd, LPCSTR text, LPCSTR title, UINT type);
1526 /**************************************************************************
1527 * FatalAppExit (KERNEL.137)
1529 void WINAPI FatalAppExit16( UINT16 action, LPCSTR str )
1531 TDB *pTask = TASK_GetCurrent();
1533 if (!pTask || !(pTask->error_mode & SEM_NOGPFAULTERRORBOX))
1535 HMODULE mod = GetModuleHandleA( "user32.dll" );
1536 if (mod)
1538 MessageBoxA_funcptr pMessageBoxA = (MessageBoxA_funcptr)GetProcAddress( mod, "MessageBoxA" );
1539 if (pMessageBoxA)
1541 pMessageBoxA( 0, str, NULL, MB_SYSTEMMODAL | MB_OK );
1542 goto done;
1545 ERR( "%s\n", debugstr_a(str) );
1547 done:
1548 ExitThread(0xff);
1552 /***********************************************************************
1553 * TerminateApp (TOOLHELP.77)
1555 * See "Undocumented Windows".
1557 void WINAPI TerminateApp16(HTASK16 hTask, WORD wFlags)
1559 if (hTask && hTask != GetCurrentTask())
1561 FIXME("cannot terminate task %x\n", hTask);
1562 return;
1565 if (wFlags & NO_UAE_BOX)
1567 UINT16 old_mode;
1568 old_mode = SetErrorMode16(0);
1569 SetErrorMode16(old_mode|SEM_NOGPFAULTERRORBOX);
1571 FatalAppExit16( 0, NULL );
1573 /* hmm, we're still alive ?? */
1575 /* check undocumented flag */
1576 if (!(wFlags & 0x8000))
1577 TASK_CallTaskSignalProc( USIG16_TERMINATION, hTask );
1579 /* UndocWin says to call int 0x21/0x4c exit=0xff here,
1580 but let's just call ExitThread */
1581 ExitThread(0xff);
1585 /***********************************************************************
1586 * GetAppCompatFlags (KERNEL.354)
1588 DWORD WINAPI GetAppCompatFlags16( HTASK16 hTask )
1590 TDB *pTask;
1592 if (!hTask) hTask = GetCurrentTask();
1593 if (!(pTask=TASK_GetPtr( hTask ))) return 0;
1594 if (GlobalSize16(hTask) < sizeof(TDB)) return 0;
1595 return pTask->compat_flags;
1599 /***********************************************************************
1600 * GetDOSEnvironment (KERNEL.131)
1602 * Note: the environment is allocated once, it doesn't track changes
1603 * made using the Win32 API. This shouldn't matter.
1605 * Format of a 16-bit environment block:
1606 * ASCIIZ string 1 (xx=yy format)
1607 * ...
1608 * ASCIIZ string n
1609 * BYTE 0
1610 * WORD 1
1611 * ASCIIZ program name (e.g. C:\WINDOWS\SYSTEM\KRNL386.EXE)
1613 SEGPTR WINAPI GetDOSEnvironment16(void)
1615 static const char ENV_program_name[] = "C:\\WINDOWS\\SYSTEM\\KRNL386.EXE";
1616 static HGLOBAL16 handle; /* handle to the 16 bit environment */
1618 if (!handle)
1620 DWORD size;
1621 LPSTR p, env;
1623 p = env = GetEnvironmentStringsA();
1624 while (*p) p += strlen(p) + 1;
1625 p++; /* skip last null */
1626 size = (p - env) + sizeof(WORD) + sizeof(ENV_program_name);
1627 handle = GlobalAlloc16( GMEM_FIXED, size );
1628 if (handle)
1630 WORD one = 1;
1631 LPSTR env16 = GlobalLock16( handle );
1632 memcpy( env16, env, p - env );
1633 memcpy( env16 + (p - env), &one, sizeof(one));
1634 memcpy( env16 + (p - env) + sizeof(WORD), ENV_program_name, sizeof(ENV_program_name));
1635 GlobalUnlock16( handle );
1637 FreeEnvironmentStringsA( env );
1639 return WOWGlobalLock16( handle );