4d310ef6021ec3951b3262e423a665f326255872
[reactos.git] / reactos / ntoskrnl / dbg / dbgctrl.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 /*
20 * PROJECT: ReactOS kernel
21 * FILE: ntoskrnl/dbg/dbgctrl.c
22 * PURPOSE: System debug control
23 * PORTABILITY: Checked
24 */
25
26 /* INCLUDES *****************************************************************/
27
28 #include <ddk/ntddk.h>
29 #include <internal/config.h>
30 #include <internal/ldr.h>
31
32 #define NDEBUG
33 #include <internal/debug.h>
34
35 /* FUNCTIONS *****************************************************************/
36
37 NTSTATUS STDCALL
38 NtSystemDebugControl(DEBUG_CONTROL_CODE ControlCode,
39 PVOID InputBuffer,
40 ULONG InputBufferLength,
41 PVOID OutputBuffer,
42 ULONG OutputBufferLength,
43 PULONG ReturnLength)
44 {
45 switch (ControlCode) {
46 case DebugGetTraceInformation:
47 case DebugSetInternalBreakpoint:
48 case DebugSetSpecialCalls:
49 case DebugClearSpecialCalls:
50 case DebugQuerySpecialCalls:
51 case DebugDbgBreakPoint:
52 break;
53 default:
54 #ifdef KDBG
55 LdrLoadUserModuleSymbols((PLDR_MODULE)InputBuffer);
56 #endif /* KDBG */
57 }
58 return STATUS_SUCCESS;
59 }