examples/win32test/win32test.h
author Robert Lehmann <robert.lehmann@sitec-systems.de>
Tue, 28 Jul 2015 16:36:55 +0200
changeset 793 72e9e1064432
parent 701 9e4ccb3cab96
permissions -rw-r--r--
timers_unix: Fix termination problem of WaitReceiveTaskEnd

The function pthread_kill sends the Signal thread and to the own process.
If you use this construct than the application which calls uses the
canfestival api will terminate at the call of canClose. To avoid that
use pthread_cancel instead of pthread_kill. To use the pthread_cancel call
you need to set the cancel ability in the thread function. That means
you need to call pthread_setcancelstate and pthread_setcanceltype.
For the termination of the thread at any time it is important to set the
cancel type to PTHREAD_CANCEL_ASYNCHRONOUS.
701
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
     1
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
     2
/* File generated by gen_cfile.py. Should not be modified. */
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
     3
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
     4
#ifndef WIN32TEST_H
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
     5
#define WIN32TEST_H
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
     6
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
     7
#include "data.h"
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
     8
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
     9
/* Prototypes of function provided by object dictionnary */
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
    10
UNS32 win32test_valueRangeTest (UNS8 typeValue, void * value);
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
    11
const indextable * win32test_scanIndexOD (UNS16 wIndex, UNS32 * errorCode, ODCallback_t **callbacks);
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
    12
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
    13
/* Master node data struct */
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
    14
extern CO_Data win32test_Data;
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
    15
Christian Taedcke <hacking@taedcke.com>
parents: 255
diff changeset
    16
#endif // WIN32TEST_H