os: Don't assert on missing implementation of barrier init/destroy. Just usage.

This commit is contained in:
José Fonseca 2010-02-05 13:54:21 +00:00
parent 8eda504203
commit e95e5caee6

View file

@ -215,12 +215,10 @@ typedef unsigned pipe_barrier;
static INLINE void pipe_barrier_init(pipe_barrier *barrier, unsigned count)
{
/* XXX we could implement barriers with a mutex and condition var */
assert(0);
}
static INLINE void pipe_barrier_destroy(pipe_barrier *barrier)
{
assert(0);
}
static INLINE void pipe_barrier_wait(pipe_barrier *barrier)