File:  [DVB] / dietlibc / libpthread / pthread_setcancelstate.c
Revision 1.4: download - view: text, annotated - select for diffs
Mon Aug 18 17:32:53 2003 UTC (20 years, 9 months ago) by sanjiyan
Branches: MAIN
CVS tags: HEAD
- checkin of the new libpthread
- add confstr

#include <unistd.h>
#include <errno.h>

#include <pthread.h>
#include "thread_internal.h"

int pthread_setcancelstate(int state,int*oldstate) {
  if ((state==PTHREAD_CANCEL_ENABLE)||(state==PTHREAD_CANCEL_DISABLE)) {
    _pthread_descr this=__thread_self();
    if (oldstate) *oldstate=this->cancelstate;
    this->cancelstate=state;
    return 0;
  }
  return EINVAL;
}

LinuxTV legacy CVS <linuxtv.org/cvs>