2018-08-21 05:27:52 +00:00
|
|
|
/* Copyright 2017-2018 ccls Authors
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
==============================================================================*/
|
|
|
|
|
2017-03-02 09:28:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
2018-05-12 20:31:56 +00:00
|
|
|
#include <string_view>
|
2017-03-29 06:33:38 +00:00
|
|
|
#include <vector>
|
2017-03-02 09:28:07 +00:00
|
|
|
|
2018-08-09 17:08:14 +00:00
|
|
|
std::string NormalizePath(const std::string &path);
|
2017-04-18 02:59:48 +00:00
|
|
|
|
2017-08-17 18:02:47 +00:00
|
|
|
// Free any unused memory and return it to the system.
|
|
|
|
void FreeUnusedMemory();
|
2017-12-22 17:07:21 +00:00
|
|
|
|
2018-02-20 00:19:57 +00:00
|
|
|
// Stop self and wait for SIGCONT.
|
2018-01-07 07:42:42 +00:00
|
|
|
void TraceMe();
|
2018-02-20 00:19:57 +00:00
|
|
|
|
2018-08-09 17:08:14 +00:00
|
|
|
std::string GetExternalCommandOutput(const std::vector<std::string> &command,
|
2018-02-20 00:19:57 +00:00
|
|
|
std::string_view input);
|