File:  [DVB] / dietlibc / lib / call_once.c
Revision 1.1: download - view: text, annotated - select for diffs
Wed Mar 19 09:00:12 2014 UTC (10 years, 2 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
thread library checkin

#include <threads.h>

void call_once(once_flag* flag, void (*func)(void)) {
  if (__sync_bool_compare_and_swap(flag,0,1))
    func();
}

LinuxTV legacy CVS <linuxtv.org/cvs>