OSDN Git Service

HttpThreadのヘッダリンクミスを修正
authornyatla <nyatla@47198e57-cb75-475f-84c4-a814cd6f29e0>
Thu, 20 Jun 2013 03:15:02 +0000 (03:15 +0000)
committernyatla <nyatla@47198e57-cb75-475f-84c4-a814cd6f29e0>
Thu, 20 Jun 2013 03:15:02 +0000 (03:15 +0000)
git-svn-id: http://svn.osdn.jp/svnroot/mimic/trunk@265 47198e57-cb75-475f-84c4-a814cd6f29e0

lib/src/NyLPC_cMiMicEnv.h
lib/src/net/httpd/NyLPC_cHttpdThread.c
lib/src/net/httpd/NyLPC_cHttpdThread.h
lib/src/net/httpd/NyLPC_cHttpdThread_protected.h

index cdd7929..2cc930a 100644 (file)
@@ -13,7 +13,7 @@ extern "C" {
 #endif /* __cplusplus */\r
 \r
 \r
-#define NyLPC_cMiMicEnv_VERSION "MiMic/1.4.10"\r
+#define NyLPC_cMiMicEnv_VERSION "MiMic/1.4.11"\r
 \r
 \r
 #ifdef __cplusplus\r
index f0303f3..0224b64 100644 (file)
@@ -1,6 +1,7 @@
 #include "NyLPC_cHttpd_protected.h"\r
 #include "NyLPC_cHttpdConnection.h"\r
 #include "NyLPC_cHttpdConnection_protected.h"\r
+#include "NyLPC_cHttpdThread_protected.h"\r
 \r
 #define LIMIT_OF_PERSISTENT_CONNECTION (NyLPC_cNet_NUMBER_OF_THREAD-1)\r
 \r
index ce95be9..022224a 100644 (file)
@@ -20,8 +20,6 @@ extern "C" {
        #define DEFINE_NyLPC_TcHttpd_t\r
 #endif\r
 \r
-/** Httpdセッションスレッドのスタックサイズ*/\r
-#define NyLPC_TcHttpdThread_SIZE_OF_THREAD_STACK 1024\r
 \r
 typedef struct NyLPC_TcHttpdThread NyLPC_TcHttpdThread_t;\r
 /**\r
index ce95be9..c6077f8 100644 (file)
@@ -5,8 +5,8 @@
  *      Author: nyatla\r
  */\r
 \r
-#ifndef NYLPC_TCHTTPDTHREAD_H_\r
-#define NYLPC_TCHTTPDTHREAD_H_\r
+#ifndef NYLPC_TCHTTPDTHREAD_PROTECTED_H_\r
+#define NYLPC_TCHTTPDTHREAD_PROTECTED_H_\r
 #include "NyLPC_stdlib.h"\r
 #include "../NyLPC_cNetConfig.h"\r
 #include "NyLPC_cHttpdConnection.h"\r
@@ -21,23 +21,10 @@ extern "C" {
 #endif\r
 \r
 /** Httpdセッションスレッドのスタックサイズ*/\r
-#define NyLPC_TcHttpdThread_SIZE_OF_THREAD_STACK 1024\r
+#define NyLPC_TcHttpdThread_SIZE_OF_THREAD_STACK 2048\r
 \r
-typedef struct NyLPC_TcHttpdThread NyLPC_TcHttpdThread_t;\r
-/**\r
- * このクラスは、httpdのワーカースレッドです。1セッションを担当します。\r
- */\r
-struct NyLPC_TcHttpdThread\r
-{\r
-       NyLPC_TcThread_t _super;\r
-       /** 関数アドレスを格納したポインタ*/\r
-       NyLPC_TcHttpdConnection_t _connection;\r
-};\r
 \r
 \r
-void NyLPC_cHttpdThread_initialize(NyLPC_TcHttpdThread_t* i_inst,NyLPC_TcHttpd_t* i_parent,NyLPC_TInt32 i_prio);\r
-void NyLPC_cHttpdThread_finalize(NyLPC_TcHttpdThread_t* i_inst);\r
-NyLPC_TBool NyLPC_cHttpdThread_start(NyLPC_TcHttpdThread_t* i_inst,NyLPC_TcTcpListener_t* i_listener);\r
 \r
 #ifdef __cplusplus\r
 }\r