Try out BackgroundWorker. It supports progress updates and cancellation of a running task.
If you're determined you want one thread to roll wait until another thread has finished doing its thing, then Monitor.Wait and Monitor.Pulse are good, as is ManualResetEvent. However, these are not really of any use for cancelling a running task.
If you want to write your own cancellation code, you can could just have a field somewhere which both threads have access to. Mark it volatile, e.g.:
private volatile bool cancelling;
Have the main thread set it to true, and have the worker thread check it periodically and set it to false when doneit has finished.
This is not really comparable to having a 'global variable', as you can still limit the scope of the semaphore variable to be private to a class.
