mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-28 06:13:31 +01:00
Move declaration of LD_NO_MESG to make conflict more apparent.
This commit is contained in:
parent
5e16601000
commit
d972f29d8d
@ -118,6 +118,11 @@
|
||||
#define LD_MESG (1u<<29)
|
||||
#define N_LOGGING_DOMAINS 30
|
||||
|
||||
#ifdef TOR_UNIT_TESTS
|
||||
/** This log message should not be intercepted by mock_saving_logv */
|
||||
#define LD_NO_MOCK (1u<<29)
|
||||
#endif
|
||||
|
||||
/** This log message is not safe to send to a callback-based logger
|
||||
* immediately. Used as a flag, not a log domain. */
|
||||
#define LD_NOCB (1u<<31)
|
||||
@ -125,11 +130,6 @@
|
||||
* would. Used as a flag, not a log domain. */
|
||||
#define LD_NOFUNCNAME (1u<<30)
|
||||
|
||||
#ifdef TOR_UNIT_TESTS
|
||||
/** This log message should not be intercepted by mock_saving_logv */
|
||||
#define LD_NO_MOCK (1u<<29)
|
||||
#endif
|
||||
|
||||
/** Mask of zero or more log domains, OR'd together. */
|
||||
typedef uint32_t log_domain_mask_t;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user