mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-28 05:39:35 +00:00
No need for complicated 'generic' setter, just make the variable itself available to DDX'es. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
27 lines
583 B
C
27 lines
583 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef _XSERVER_LOG_PRIV_H
|
|
#define _XSERVER_LOG_PRIV_H
|
|
|
|
#include <sys/types.h>
|
|
#include <X11/Xdefs.h>
|
|
|
|
/**
|
|
* @brief force fsync() on each log write
|
|
*
|
|
* If set to TRUE, force fsync() on each log write.
|
|
*/
|
|
extern Bool logSync;
|
|
|
|
/**
|
|
* @brief console log verbosity (stderr)
|
|
*
|
|
* The verbosity level of logging to console. All messages with verbosity
|
|
* level below this one will be written to stderr
|
|
*/
|
|
extern int logVerbosity;
|
|
|
|
#endif /* _XSERVER_LOG_PRIV_H */
|