mirror of
https://github.com/eclipse/paho.mqtt-sn.embedded-c.git
synced 2025-12-14 07:56:52 +01:00
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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
|
||||
#include <pthread.h>
|
||||
#include <semaphore.h>
|
||||
#include "MQTTSNGWDefines.h"
|
||||
|
||||
namespace MQTTSNGW
|
||||
{
|
||||
|
||||
@@ -152,6 +152,7 @@ SensorNetAddress* SensorNetwork::getSenderAddress(void)
|
||||
XBee::XBee(){
|
||||
_serialPort = new SerialPort();
|
||||
_respCd = 0;
|
||||
_respId = 0;
|
||||
_dataLen = 0;
|
||||
_frameId = 0;
|
||||
_apiMode = 2;
|
||||
|
||||
Reference in New Issue
Block a user