File:  [DVB] / dietlibc / libpthread / pthread_cond_destroy.c
Revision 1.4: download - view: text, annotated - select for diffs
Mon Aug 18 17:32:52 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 <string.h>

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

int pthread_cond_destroy(pthread_cond_t*cond) {
  _pthread_descr this=__thread_self();
  int ret=0;

  __NO_ASYNC_CANCEL_BEGIN_(this);
  LOCK(cond);

  if (cond->wait_chain) {
    UNLOCK(cond);
    ret=EBUSY;
  }
  else {
    memset(cond,0,sizeof(pthread_cond_t));
    cond->lock.__spinlock=PTHREAD_SPIN_UNLOCKED;
  }
  __NO_ASYNC_CANCEL_END_(this);
  return ret;
}


LinuxTV legacy CVS <linuxtv.org/cvs>