blob: 27c4f3ed67361e7a1c089fe0d5567619e072e687 [file] [log] [blame]
#include "stdio_impl.h"
#include "pthread_impl.h"
#ifdef __GNUC__
__attribute__((__noinline__))
#endif
static int locking_getc(FILE *f)
{
if (a_cas(&f->lock, 0, MAYBE_WAITERS-1)) __lockfile(f);
int c = getc_unlocked(f);
if (a_swap(&f->lock, 0) & MAYBE_WAITERS)
__wake(&f->lock, 1, 1);
return c;
}
static inline int do_getc(FILE *f)
{
#if defined(TRUSTY_USERSPACE)
int l = f->lock;
if (l < 0 || l && (l & ~MAYBE_WAITERS) == __pthread_self()->tid)
return getc_unlocked(f);
return locking_getc(f);
#else
return getc_unlocked(f);
#endif
}