Instructions
359 C-Control Pro IDE
© 2013 Conrad Electronic
Description
Returns the free memory that is available for the calling thread.
Parameter
None
Return Parameter
free memory in bytes
5.25.7 Thread_Resume
Thread Functions
Syntax
void Thread_Resume(byte thread);
Sub Thread_Resume(thread As Byte)
Description
If a thread has the state "waiting" it can be set to "inactive" with this function call. "Inactive" means that a
thread is ready for activation at a thread change.
Parameter
thread (0-13) thread number
5.25.8 Thread_Signal
Thread Functions
Syntax
void Thread_Signal(byte signal);
Sub Thread_Signal(signal As Byte)
Description
Has a thread been set to state "waiting" with a call to Thread_Wait() it can be set to "inactive" with a call to
Thread_Signal(). The signal parameter must have the same value as the value that has been used in the
call to Thread_Wait().