Use free Windows DDK and compile with latest MinGW releases.
[reactos.git] / reactos / ntoskrnl / io / process.c
1 /*
2 * ReactOS kernel
3 * Copyright (C) 1998, 1999, 2000, 2001 ReactOS Team
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19 /* $Id: process.c,v 1.13 2002/09/07 15:12:53 chorns Exp $
20 *
21 * COPYRIGHT: See COPYING in the top level directory
22 * PROJECT: ReactOS kernel
23 * FILE: ntoskrnl/io/process.c
24 * PURPOSE: Process functions that, bizarrely, are in the iomgr
25 * PROGRAMMER: David Welch (welch@mcmail.com)
26 * UPDATE HISTORY:
27 * Created 22/05/98
28 */
29
30 /* INCLUDES *****************************************************************/
31
32 #include <ntoskrnl.h>
33
34 #define NDEBUG
35 #include <internal/debug.h>
36
37
38 /* FUNCTIONS *****************************************************************/
39
40 PVOID STDCALL
41 IoGetInitialStack(VOID)
42 {
43 return(PsGetCurrentThread()->Tcb.InitialStack);
44 }
45
46
47 VOID STDCALL
48 IoGetStackLimits(OUT PULONG LowLimit,
49 OUT PULONG HighLimit)
50 {
51 *LowLimit = (ULONG)NtCurrentTeb()->Tib.StackLimit;
52 *HighLimit = (ULONG)NtCurrentTeb()->Tib.StackBase;
53 }
54
55
56 PEPROCESS STDCALL
57 IoThreadToProcess(IN PETHREAD Thread)
58 {
59 return(Thread->ThreadsProcess);
60 }
61
62
63 PEPROCESS STDCALL
64 IoGetRequestorProcess(IN PIRP Irp)
65 {
66 return(Irp->Tail.Overlay.Thread->ThreadsProcess);
67 }
68
69
70 /**********************************************************************
71 * NAME EXPORTED
72 * IoSetThreadHardErrorMode@4
73 *
74 * ARGUMENTS
75 * HardErrorEnabled
76 * TRUE : enable hard errors processing;
77 * FALSE: do NOT process hard errors.
78 *
79 * RETURN VALUE
80 * Previous value for the current thread's hard errors
81 * processing policy.
82 */
83 BOOLEAN STDCALL
84 IoSetThreadHardErrorMode(IN BOOLEAN HardErrorEnabled)
85 {
86 BOOLEAN PreviousHEM = NtCurrentTeb()->HardErrorDisabled;
87
88 NtCurrentTeb()->HardErrorDisabled = ((TRUE == HardErrorEnabled) ? FALSE : TRUE);
89
90 return((TRUE == PreviousHEM) ? FALSE : TRUE);
91 }
92
93 /* EOF */