Radek Krejci | d0d1952 | 2015-09-02 13:49:25 +0200 | [diff] [blame] | 1 | /** |
| 2 | * \file config.h |
| 3 | * \author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * \brief libnetconf2 various configuration settings. |
| 5 | * |
Michal Vasko | f471fa0 | 2017-02-15 10:48:12 +0100 | [diff] [blame] | 6 | * Copyright (c) 2015 - 2017 CESNET, z.s.p.o. |
Radek Krejci | d0d1952 | 2015-09-02 13:49:25 +0200 | [diff] [blame] | 7 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
Michal Vasko | afd416b | 2016-02-25 14:51:46 +0100 | [diff] [blame] | 11 | * |
Radek Krejci | 9b81f5b | 2016-02-24 13:14:49 +0100 | [diff] [blame] | 12 | * https://opensource.org/licenses/BSD-3-Clause |
Radek Krejci | d0d1952 | 2015-09-02 13:49:25 +0200 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #ifndef NC_CONFIG_H_ |
| 16 | #define NC_CONFIG_H_ |
| 17 | |
| 18 | /* |
| 19 | * Mark all objects as hidden and export only objects explicitly marked to be part of the public API. |
| 20 | */ |
| 21 | #define API __attribute__((visibility("default"))) |
| 22 | |
Michal Vasko | 05ba9df | 2016-01-13 14:40:27 +0100 | [diff] [blame] | 23 | #ifdef __GNUC__ |
| 24 | # define UNUSED(x) UNUSED_ ## x __attribute__((__unused__)) |
| 25 | #else |
| 26 | # define UNUSED(x) UNUSED_ ## x |
| 27 | #endif |
| 28 | |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 29 | /* |
Radek Krejci | 32898d5 | 2016-07-14 17:37:02 +0200 | [diff] [blame] | 30 | * Support for spinlocks |
| 31 | */ |
| 32 | #cmakedefine HAVE_SPINLOCK |
| 33 | #ifndef HAVE_SPINLOCK |
| 34 | # define pthread_spinlock_t pthread_mutex_t |
| 35 | # define pthread_spin_init(s, opt) pthread_mutex_init(s, NULL) |
| 36 | # define pthread_spin_lock pthread_mutex_lock |
| 37 | # define pthread_spin_trylock pthread_mutex_trylock |
| 38 | # define pthread_spin_unlock pthread_mutex_unlock |
| 39 | # define pthread_spin_destroy pthread_mutex_destroy |
| 40 | #endif |
| 41 | |
| 42 | /* |
Radek Krejci | 2847292 | 2016-07-15 11:51:16 +0200 | [diff] [blame] | 43 | * support for pthread_mutex_timedlock |
| 44 | */ |
| 45 | #cmakedefine HAVE_PTHREAD_MUTEX_TIMEDLOCK |
| 46 | |
| 47 | /* |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 48 | * Location of installed basic YIN/YANG schemas |
| 49 | */ |
Michal Vasko | ff7e356 | 2018-02-15 13:41:22 +0100 | [diff] [blame] | 50 | #define NC_SCHEMAS_DIR "@SCHEMAS_DIR@" |
Radek Krejci | 14b1403 | 2015-10-21 15:19:43 +0200 | [diff] [blame] | 51 | |
Michal Vasko | 6b7c42e | 2016-03-02 15:46:41 +0100 | [diff] [blame] | 52 | /* |
Michal Vasko | f471fa0 | 2017-02-15 10:48:12 +0100 | [diff] [blame] | 53 | * Inactive read timeout |
Michal Vasko | 6b7c42e | 2016-03-02 15:46:41 +0100 | [diff] [blame] | 54 | */ |
Michal Vasko | f471fa0 | 2017-02-15 10:48:12 +0100 | [diff] [blame] | 55 | #define NC_READ_INACT_TIMEOUT @READ_INACTIVE_TIMEOUT@ |
| 56 | |
| 57 | /* |
| 58 | * Active read timeout in seconds |
| 59 | * (also used for internal <get-schema> RPC reply timeout) |
| 60 | */ |
| 61 | #define NC_READ_ACT_TIMEOUT @READ_ACTIVE_TIMEOUT@ |
Michal Vasko | 6b7c42e | 2016-03-02 15:46:41 +0100 | [diff] [blame] | 62 | |
Michal Vasko | afdb8ec | 2017-02-15 11:25:36 +0100 | [diff] [blame] | 63 | /* |
| 64 | * pspoll structure queue size (also found in nc_server.h) |
| 65 | */ |
| 66 | #define NC_PS_QUEUE_SIZE @MAX_PSPOLL_THREAD_COUNT@ |
| 67 | |
Radek Krejci | d0d1952 | 2015-09-02 13:49:25 +0200 | [diff] [blame] | 68 | #endif /* NC_CONFIG_H_ */ |