File:  [DVB] / dietlibc / libpthread / pthread_rwlock_init.c
Revision 1.1: download - view: text, annotated - select for diffs
Sat Aug 27 17:35:13 2016 UTC (7 years, 9 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
  add really crappy pthread_rwclock implementation for openssl 1.1

#include <pthread.h>

int pthread_rwlock_init(pthread_rwlock_t *rwlock, const pthread_rwlockattr_t *attr) {
  rwlock->n=0;
  return 0;
}

LinuxTV legacy CVS <linuxtv.org/cvs>