+NtWriteFile()
[reactos.git] / 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$
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 <ddk/ntddk.h>
33 #include <internal/ps.h>
34
35 #include <internal/debug.h>
36
37 /* FUNCTIONS *****************************************************************/
38
39 #ifndef LIBCAPTIVE
40
41 PVOID STDCALL
42 IoGetInitialStack(VOID)
43 {
44   return(PsGetCurrentThread()->Tcb.InitialStack);
45 }
46
47
48 VOID STDCALL
49 IoGetStackLimits(OUT PULONG LowLimit,
50                  OUT PULONG HighLimit)
51 {
52   *LowLimit = (ULONG)NtCurrentTeb()->Tib.StackLimit;
53   *HighLimit = (ULONG)NtCurrentTeb()->Tib.StackBase;
54 }
55
56
57 PEPROCESS STDCALL
58 IoThreadToProcess(IN PETHREAD Thread)
59 {
60   return(Thread->ThreadsProcess);
61 }
62
63 #endif /* LIBCAPTIVE */
64
65 PEPROCESS STDCALL
66 IoGetRequestorProcess(IN PIRP Irp)
67 {
68   return(Irp->Tail.Overlay.Thread->ThreadsProcess);
69 }
70
71 #ifndef LIBCAPTIVE
72
73 /**********************************************************************
74  * NAME                                                 EXPORTED
75  *      IoSetThreadHardErrorMode@4
76  *
77  * ARGUMENTS
78  *      HardErrorEnabled
79  *              TRUE : enable hard errors processing;
80  *              FALSE: do NOT process hard errors.
81  *
82  * RETURN VALUE
83  *      Previous value for the current thread's hard errors
84  *      processing policy.
85  */
86 BOOLEAN STDCALL EXPORTED
87 IoSetThreadHardErrorMode(IN BOOLEAN HardErrorEnabled)
88 {
89   BOOLEAN PreviousHEM = NtCurrentTeb()->HardErrorDisabled;
90
91   NtCurrentTeb()->HardErrorDisabled = ((TRUE == HardErrorEnabled) ? FALSE : TRUE);
92
93   return((TRUE == PreviousHEM) ? FALSE : TRUE);
94 }
95
96 #endif /* LIBCAPTIVE */
97
98 /* EOF */