This is the mail archive of the pthreads-win32@sources.redhat.com mailing list for the pthreas-win32 project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: pthread_cancel doesn't work



Hi pankaj,
     In Windows, threads get cancelled only in CANCELLATION POINTS.
So you *cannot* expect your thread to get cancelled as soon as you cancel
the thread
by calling pthread_cancel. So,unless it comes across a cancellation point
it wont get cancelled.

I suggest you to do a explicit pthread_testcancel() in your thread which is
a defined cancelleation point
and the thread will relinquish when it encounters this.

some possible scenarios where a thread might not get cancelled are
> Listening in a socket
> waiting for a user input from console(getchar())

regds,
srikanth






pankaj bathwal <pbathwal@yahoo.com> on 11/16/2002 11:17:31 AM

To:   pthreads-win32@sources.redhat.com
cc:    (bcc: Srikanth Sundaragopalan/HSSBLR)

Subject:  pthread_cancel doesn't work




Hi,
I am trying to cancel a running thread.
I an using "pthread_cancel" function.
I have set cancel state as PTHREAD_CANCEL_ENABLE using
function "pthread_setcancelstate" but execution of my
thread does not stop.
what's wrong??
Do I have to something more??
Can I have a sample code??

Thanks
Pankaj


__________________________________________________
Do you Yahoo!?
Yahoo! Web Hosting - Let the expert host your site
http://webhosting.yahoo.com





Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]