mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove repeated macro THR_IN_CONDQ.
This commit is contained in:
parent
0318c367fc
commit
cfd2782976
2 changed files with 0 additions and 2 deletions
|
|
@ -37,7 +37,6 @@
|
|||
#include <pthread.h>
|
||||
#include "thr_private.h"
|
||||
|
||||
#define THR_IN_CONDQ(thr) (((thr)->sflags & THR_FLAGS_IN_SYNCQ) != 0)
|
||||
#define THR_IN_CONDQ(thr) (((thr)->sflags & THR_FLAGS_IN_SYNCQ) != 0)
|
||||
#define THR_CONDQ_SET(thr) (thr)->sflags |= THR_FLAGS_IN_SYNCQ
|
||||
#define THR_CONDQ_CLEAR(thr) (thr)->sflags &= ~THR_FLAGS_IN_SYNCQ
|
||||
|
|
|
|||
|
|
@ -37,7 +37,6 @@
|
|||
#include <pthread.h>
|
||||
#include "thr_private.h"
|
||||
|
||||
#define THR_IN_CONDQ(thr) (((thr)->sflags & THR_FLAGS_IN_SYNCQ) != 0)
|
||||
#define THR_IN_CONDQ(thr) (((thr)->sflags & THR_FLAGS_IN_SYNCQ) != 0)
|
||||
#define THR_CONDQ_SET(thr) (thr)->sflags |= THR_FLAGS_IN_SYNCQ
|
||||
#define THR_CONDQ_CLEAR(thr) (thr)->sflags &= ~THR_FLAGS_IN_SYNCQ
|
||||
|
|
|
|||
Loading…
Reference in a new issue