BugFix: Que template

Update: Add ProcessFramework test and change Makefile for it.


Signed-off-by: tomoaki <tomoaki@tomy-tech.com>
This commit is contained in:
tomoaki
2016-10-01 08:47:10 +09:00
parent e3dd9fa01a
commit 76f58a60a3
19 changed files with 415 additions and 57 deletions

View File

@@ -502,7 +502,7 @@ bool Thread::equals(pthread_t *t1, pthread_t *t2)
int Thread::start(void)
{
Runnable *runnable = this;
Runnable* runnable = this;
return pthread_create(&_threadID, 0, _run, runnable);
}

View File

@@ -19,6 +19,7 @@
#include <pthread.h>
#include <semaphore.h>
#include "MQTTSNGWDefines.h"
namespace MQTTSNGW
{

View File

@@ -152,6 +152,7 @@ SensorNetAddress* SensorNetwork::getSenderAddress(void)
XBee::XBee(){
_serialPort = new SerialPort();
_respCd = 0;
_respId = 0;
_dataLen = 0;
_frameId = 0;
_apiMode = 2;