File:  [DVB] / dietlibc / libpthread / pthread_mutex_init.c
Revision 1.5: 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 <string.h>
#include <pthread.h>
#include "thread_internal.h"

int pthread_mutex_init(pthread_mutex_t*mutex,const pthread_mutexattr_t*mutexattr) {
  memset(mutex,0,sizeof(pthread_mutex_t));
  if (mutexattr) {
    mutex->kind=mutexattr->__mutexkind;
  }
  mutex->lock.__spinlock=PTHREAD_SPIN_UNLOCKED;
  return 0;
}


LinuxTV legacy CVS <linuxtv.org/cvs>