Apollo 10.0
自动驾驶开放平台
logger_util.cc
浏览该文件的文档.
1/******************************************************************************
2 * Copyright 2018 The Apollo Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *****************************************************************************/
16
18
19#include <sys/stat.h>
20#include <sys/time.h>
21#include <sys/utsname.h>
22#include <unistd.h>
23
24#include <cstdint>
25#include <cstdlib>
26#include <ctime>
27#include <string>
28#include <vector>
29
30#include "glog/logging.h"
31
32namespace apollo {
33namespace cyber {
34namespace logger {
35
36static int32_t g_main_thread_pid = getpid();
37
38int32_t GetMainThreadPid() { return g_main_thread_pid; }
39
41 int32_t pid = getpid();
42 if (g_main_thread_pid == pid) {
43 return false;
44 }
45 g_main_thread_pid = pid;
46 return true;
47}
48
49} // namespace logger
50} // namespace cyber
51} // namespace apollo
class register implement
Definition arena_queue.h:37