Hi,
Status:
Thread Newbie
What will be the most efficient way to achieve the following requirement:
-->I have a thread that needs to periodically (period set by user which could run into minutes or hours or maybe even day/s) perform some tasks. Some options that I thought of were:
1. putting this thread to sleep, or
2. having another thread (say a timer thread) send an interrupt to this thread perhaps
The basic performance objective here is to minimize system resource usage.
Thnx for any help.
Shane