2 * Global constants and defines.
4 * Copyright (C) 2013 Simon Ruderich
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 /* Names of used environment variables. */
24 #define ENV_NAME_FDS "COLORED_STDERR_FDS"
25 #define ENV_NAME_PRE_STRING "COLORED_STDERR_PRE"
26 #define ENV_NAME_POST_STRING "COLORED_STDERR_POST"
27 #define ENV_NAME_FORCE_WRITE "COLORED_STDERR_FORCE_WRITE"
28 #define ENV_NAME_PRIVATE_FDS "COLORED_STDERR_PRIVATE_FDS"
30 /* Strings written before/after each matched function. */
31 #define DEFAULT_PRE_STRING "\033[31m" /* red */
32 #define DEFAULT_POST_STRING "\033[0m" /* default */
34 /* Number of elements to allocate statically. Highest descriptor observed in
35 * normal use was 255 (by bash), which yielded this limit to prevent
36 * unnecessary calls to malloc() whenever possible. */
37 #define TRACKFDS_STATIC_COUNT 256
38 /* Number of new elements to allocate per realloc(). */
39 #define TRACKFDS_REALLOC_STEP 10
42 # define DEBUG_FILE "colored_stderr_debug_log.txt"
45 /* Created in the user's home directory, appends to existing file. */
46 # define WARNING_FILE "colored_stderr_warning_log.txt"