1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
// This source code file was last time modified by Igor UA3DJY on September 2nd, 2017
// All changes are shown in the patch file coming together with the full JTDX source code.
#include <QDebug>
#include <QString>
#include <QSharedMemory>
#include <QSystemSemaphore>
#include "../commons.h"
// Multiple instances: KK1D, 17 Jul 2013
QSharedMemory mem_jtdxjt9;
// Semaphore not changed, as the acquire/release calls do not
// appear to be used anywhere.
QSystemSemaphore sem_jtdxjt9("sem_jtdxjt9", 1, QSystemSemaphore::Open);
extern "C" {
bool attach_jtdxjt9_();
bool create_jtdxjt9_(int nsize);
bool detach_jtdxjt9_();
bool lock_jtdxjt9_();
bool unlock_jtdxjt9_();
struct jt9com * address_jtdxjt9_();
int size_jtdxjt9_();
// Multiple instances: wrapper for QSharedMemory::setKey()
bool setkey_jtdxjt9_(char* mykey, int mykey_len);
bool acquire_jtdxjt9_();
bool release_jtdxjt9_();
}
bool attach_jtdxjt9_() {return mem_jtdxjt9.attach();}
bool create_jtdxjt9_(int nsize) {return mem_jtdxjt9.create(nsize);}
bool detach_jtdxjt9_() {return mem_jtdxjt9.detach();}
bool lock_jtdxjt9_() {return mem_jtdxjt9.lock();}
bool unlock_jtdxjt9_() {return mem_jtdxjt9.unlock();}
struct jt9com * address_jtdxjt9_() {return reinterpret_cast<struct jt9com *>(mem_jtdxjt9.data());}
int size_jtdxjt9_() {return (int)mem_jtdxjt9.size();}
// Multiple instances:
bool setkey_jtdxjt9_(char* mykey, int mykey_len) {
char *tempstr = (char *)calloc(mykey_len+1,1);
memset(tempstr, 0, mykey_len+1);
strncpy(tempstr, mykey, mykey_len);
QString s1 = QString(QLatin1String(tempstr));
mem_jtdxjt9.setKey(s1);
return true;}
bool acquire_jtdxjt9_() {return sem_jtdxjt9.acquire();}
bool release_jtdxjt9_() {return sem_jtdxjt9.release();}
|