File:  [DVB] / dietlibc / libpthread / pthread_fgetc.c
Revision 1.1: download - view: text, annotated - select for diffs
Thu May 10 16:22:53 2001 UTC (23 years, 1 month ago) by fefe
Branches: MAIN
CVS tags: finnland_test_200301, branch_rc14_fieldtest_finnland, branch_rc13_fieldtest_finnland, branch_rc12_fieldtest_finnland, branch_rc10_fieldtest_finnland, RELEASE_finnland_200301_1, RC12_FIELDTEST_FINNLAND, RC10_FIELDTEST_FINNLAND, HEAD
muß skat spielen ;)

#include "dietstdio.h"
#include <unistd.h>

int fgetc(FILE *stream) {
  int tmp;
  pthread_mutex_lock(&stream->m);
  tmp=fgetc_unlocked(stream);
  pthread_mutex_unlock(&stream->m);
  return tmp;
}

LinuxTV legacy CVS <linuxtv.org/cvs>