mirror of
https://github.com/thestk/stk
synced 2026-01-13 21:11:53 +00:00
28 lines
545 B
C
28 lines
545 B
C
// Thread functions for use with syntmono.
|
|
//
|
|
// Gary P. Scavone, 1999.
|
|
|
|
#include "../STK/Object.h"
|
|
|
|
#define STRING_LEN 60
|
|
|
|
#if (defined(__STK_REALTIME_) && defined(__OS_IRIX_) )
|
|
|
|
void newStringByPipe(void *);
|
|
void newStringBySocket(void *);
|
|
|
|
#elif (defined(__STK_REALTIME_) && defined(__OS_Linux_) )
|
|
|
|
void *newStringByPipe(void *);
|
|
void *newStringBySocket(void *);
|
|
|
|
#elif (defined(__STK_REALTIME_) && defined(__OS_Win_) )
|
|
|
|
void newStringByPipe(void *);
|
|
void newStringBySocket(void *);
|
|
|
|
#endif
|
|
|
|
void startPipeThread();
|
|
void startSocketThread();
|