|
|
|||
File indexing completed on 2025-12-16 09:40:52
0001 // Copyright 2022 The Abseil Authors. 0002 // 0003 // Licensed under the Apache License, Version 2.0 (the "License"); 0004 // you may not use this file except in compliance with the License. 0005 // You may obtain a copy of the License at 0006 // 0007 // https://www.apache.org/licenses/LICENSE-2.0 0008 // 0009 // Unless required by applicable law or agreed to in writing, software 0010 // distributed under the License is distributed on an "AS IS" BASIS, 0011 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 0012 // See the License for the specific language governing permissions and 0013 // limitations under the License. 0014 // 0015 // ----------------------------------------------------------------------------- 0016 // File: log/internal/config.h 0017 // ----------------------------------------------------------------------------- 0018 // 0019 0020 #ifndef ABSL_LOG_INTERNAL_CONFIG_H_ 0021 #define ABSL_LOG_INTERNAL_CONFIG_H_ 0022 0023 #include "absl/base/config.h" 0024 0025 #ifdef _WIN32 0026 #include <cstdint> 0027 #else 0028 #include <sys/types.h> 0029 #endif 0030 0031 namespace absl { 0032 ABSL_NAMESPACE_BEGIN 0033 namespace log_internal { 0034 0035 #ifdef _WIN32 0036 using Tid = uint32_t; 0037 #else 0038 using Tid = pid_t; 0039 #endif 0040 0041 } // namespace log_internal 0042 ABSL_NAMESPACE_END 0043 } // namespace absl 0044 0045 #endif // ABSL_LOG_INTERNAL_CONFIG_H_
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|