Browse Source

[GDB] Add copyright header for gdbmach.c

tags/v0.9.4
Stefan Hajnoczi 16 years ago
parent
commit
5504fa9047
1 changed files with 24 additions and 0 deletions
  1. 24
    0
      src/arch/i386/core/gdbmach.c

+ 24
- 0
src/arch/i386/core/gdbmach.c View File

1
+/*
2
+ * Copyright (C) 2008 Stefan Hajnoczi <stefanha@gmail.com>.
3
+ *
4
+ * This program is free software; you can redistribute it and/or
5
+ * modify it under the terms of the GNU General Public License as
6
+ * published by the Free Software Foundation; either version 2 of the
7
+ * License, or any later version.
8
+ *
9
+ * This program is distributed in the hope that it will be useful, but
10
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
+ * General Public License for more details.
13
+ *
14
+ * You should have received a copy of the GNU General Public License
15
+ * along with this program; if not, write to the Free Software
16
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
+ */
18
+
1
 #include <stddef.h>
19
 #include <stddef.h>
2
 #include <stdio.h>
20
 #include <stdio.h>
3
 #include <assert.h>
21
 #include <assert.h>
5
 #include <gpxe/gdbstub.h>
23
 #include <gpxe/gdbstub.h>
6
 #include <gdbmach.h>
24
 #include <gdbmach.h>
7
 
25
 
26
+/** @file
27
+ *
28
+ * GDB architecture-specific bits for i386
29
+ *
30
+ */
31
+
8
 enum {
32
 enum {
9
 	DR7_CLEAR = 0x00000400,    /* disable hardware breakpoints */
33
 	DR7_CLEAR = 0x00000400,    /* disable hardware breakpoints */
10
 	DR6_CLEAR = 0xffff0ff0,    /* clear breakpoint status */
34
 	DR6_CLEAR = 0xffff0ff0,    /* clear breakpoint status */

Loading…
Cancel
Save