OSDN Git Service

*** empty log message ***
authorkoinec <>
Sun, 8 Nov 2009 05:58:52 +0000 (05:58 +0000)
committerkoinec <>
Sun, 8 Nov 2009 05:58:52 +0000 (05:58 +0000)
deamon/Makefile
deamon/drd64_debugd.h
deamon/drd64_debugd_debug.h [new file with mode: 0644]
deamon/drd64_debugd_debug_attach.c [new file with mode: 0644]
drd64_skel.c [new file with mode: 0644]
drd64_skel.h [new file with mode: 0644]

index 5890099..869ab2a 100644 (file)
 MAKE = make
 CC = gcc
 
-
+#
+#
 SUPER_HEADER = ../include/drd64_packet.h \
                                ../include/drd64_conf.h \
                                ../include/drd64_types.h
+
+#
+#
 SERVER_HEADER = drd64_server.h \
                                drd64_server_recvstatus.h \
                                drd64_server_log.h \
@@ -58,15 +62,19 @@ SERVER_OBJS =       drd64_server_common.o \
 
 FLAGS_DEBUG = -g
 
+#
+#
 DEBUGD_TARGET = drd64_debugd
 DEBUGD_OBJS =  drd64_debugd_main.o \
                                drd64_debugd_dispatch.o \
                                drd64_debugd_send_cmd_bootinfo.o \
                                drd64_common_function.o \
+                               drd64_debugd_debug_attach.o \
                                $(SERVER_OBJS)
 DEBUGD_HEADER = drd64_debugd.h \
                                drd64_debugd_info.h \
                                drd64_debugd_dispatch.h \
+                               drd64_debugd_debug.h \
                                $(SERVER_HEADER)
 
 MARSHALD_TARGET = drd64_marshald
@@ -89,18 +97,28 @@ MARSHALD_HEADER =   drd64_marshald.h \
 all:   $(DEBUGD_TARGET) \
                $(MARSHALD_TARGET)
 
+#
+#
 $(DEBUGD_TARGET): $(DEBUGD_OBJS)
        $(CC) -o $(DEBUGD_TARGET) $(FLAGS_DEBUG) $(DEBUGD_OBJS)
        cp $(DEBUGD_TARGET) ..
 
 drd64_debugd_main.o: drd64_debugd_main.c $(DEBUGD_HEADER)
-       $(CC) -c -o drd64_debugd_main.o $(FLAGS_DEBUG) drd64_debugd_main.c
+       $(CC) -c -o drd64_debugd_main.o $(FLAGS_DEBUG) \
+                               drd64_debugd_main.c
 
 drd64_debugd_dispatch.o: drd64_debugd_dispatch.c $(DEBUGD_HEADER)
-       $(CC) -c -o drd64_debugd_dispatch.o $(FLAGS_DEBUG) drd64_debugd_dispatch.c
+       $(CC) -c -o drd64_debugd_dispatch.o $(FLAGS_DEBUG) \
+                               drd64_debugd_dispatch.c
+
+drd64_debugd_send_cmd_bootinfo.o: \
+               drd64_debugd_send_cmd_bootinfo.c $(DEBUGD_HEADER)
+       $(CC) -c -o drd64_debugd_send_cmd_bootinfo.o $(FLAGS_DEBUG) \
+                               drd64_debugd_send_cmd_bootinfo.c
 
-drd64_debugd_send_cmd_bootinfo.o: drd64_debugd_send_cmd_bootinfo.c $(DEBUGD_HEADER)
-       $(CC) -c -o drd64_debugd_send_cmd_bootinfo.o $(FLAGS_DEBUG) drd64_debugd_send_cmd_bootinfo.c
+drd64_debugd_debug_attach.o: drd64_debugd_debug_attach.c $(DEBUGD_HEADER)
+       $(CC) -c -o drd64_debugd_debug_attach.o $(FLAGS_DEBUG) \
+                               drd64_debugd_debug_attach.c
 
 ##
 ##
index f02518a..4cba39c 100644 (file)
@@ -62,6 +62,7 @@ Comment:
 #include"drd64_server_debuglog.h"
 #include"drd64_debugd_info.h"
 #include"drd64_debugd_dispatch.h"
+#include"drd64_debugd_debug.h"
 
 #define DRD64_DEBUGD_RECVSTATUS_UNITS   4
 
diff --git a/deamon/drd64_debugd_debug.h b/deamon/drd64_debugd_debug.h
new file mode 100644 (file)
index 0000000..dfae471
--- /dev/null
@@ -0,0 +1,49 @@
+/*DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64
+
+                         D r . D e a m o n  6 4
+                        for INTEL64(R), AMD64(R)
+       
+   Copyright(C) 2007-2009 Koine Yuusuke(koinec). All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+    this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+    notice, this list of conditions and the following disclaimer in the
+    documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY Koine Yuusuke(koinec) ``AS IS'' AND ANY
+EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL Koine Yuusuke(koinec) OR CONTRIBUTORS BE
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+OF THE POSSIBILITY OF SUCH DAMAGE.
+
+DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64*/
+
+/* File Info -----------------------------------------------------------
+File: drd64_.h
+Function: Header 
+Comment: 
+----------------------------------------------------------------------*/
+
+#ifndef DRD64_HEADER_DEBUGD_DEBUG
+#define DRD64_HEADER_DEBUGD_DEBUG
+
+#ifdef DRD64_SRC_DEBUGD_DEBUG_ATTACH
+       #define EXTERN_DEBUGD_DEBUG_ATTACH
+#else
+       #define EXTERN_DEBUGD_DEBUG_ATTACH
+#endif
+
+
+#endif /* DRD64_HEADER_DEBUGD_DEBUG */
+
+/* EOF of drd64_.h ----------------------------------- */
diff --git a/deamon/drd64_debugd_debug_attach.c b/deamon/drd64_debugd_debug_attach.c
new file mode 100644 (file)
index 0000000..1c4073e
--- /dev/null
@@ -0,0 +1,41 @@
+/*DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64
+
+                         D r . D e a m o n  6 4
+                        for INTEL64(R), AMD64(R)
+       
+   Copyright(C) 2007-2009 Koine Yuusuke(koinec). All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+    this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+    notice, this list of conditions and the following disclaimer in the
+    documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY Koine Yuusuke(koinec) ``AS IS'' AND ANY
+EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL Koine Yuusuke(koinec) OR CONTRIBUTORS BE
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+OF THE POSSIBILITY OF SUCH DAMAGE.
+
+DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64*/
+
+/* File Info -----------------------------------------------------------
+File: drd64_.c
+Function: 
+Comment: 
+----------------------------------------------------------------------*/
+
+#define DRD64_SRC_DEBUGD_DEBUG_ATTACH
+#include"drd64_debugd.h"
+
+
+/* EOF of drd64_.c ----------------------------------- */
diff --git a/drd64_skel.c b/drd64_skel.c
new file mode 100644 (file)
index 0000000..8bae3ab
--- /dev/null
@@ -0,0 +1,40 @@
+/*DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64
+
+                         D r . D e a m o n  6 4
+                        for INTEL64(R), AMD64(R)
+       
+   Copyright(C) 2007-2009 Koine Yuusuke(koinec). All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+    this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+    notice, this list of conditions and the following disclaimer in the
+    documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY Koine Yuusuke(koinec) ``AS IS'' AND ANY
+EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL Koine Yuusuke(koinec) OR CONTRIBUTORS BE
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+OF THE POSSIBILITY OF SUCH DAMAGE.
+
+DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64*/
+
+/* File Info -----------------------------------------------------------
+File: drd64_.c
+Function: 
+Comment: 
+----------------------------------------------------------------------*/
+
+#include"drd64.h"
+
+
+/* EOF of drd64_.c ----------------------------------- */
diff --git a/drd64_skel.h b/drd64_skel.h
new file mode 100644 (file)
index 0000000..9191682
--- /dev/null
@@ -0,0 +1,41 @@
+/*DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64
+
+                         D r . D e a m o n  6 4
+                        for INTEL64(R), AMD64(R)
+       
+   Copyright(C) 2007-2009 Koine Yuusuke(koinec). All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+    this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+    notice, this list of conditions and the following disclaimer in the
+    documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY Koine Yuusuke(koinec) ``AS IS'' AND ANY
+EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL Koine Yuusuke(koinec) OR CONTRIBUTORS BE
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+OF THE POSSIBILITY OF SUCH DAMAGE.
+
+DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64DrDeAmOn64*/
+
+/* File Info -----------------------------------------------------------
+File: drd64_.h
+Function: Header 
+Comment: 
+----------------------------------------------------------------------*/
+
+#ifndef DRD64_HEADER_XXX
+
+#endif /* DRD64_HEADER_XXX */
+
+/* EOF of drd64_.h ----------------------------------- */