ccls/src/platform.hh

24 lines
564 B
C++
Raw Normal View History

2018-08-21 05:27:52 +00:00
// Copyright 2017-2018 ccls Authors
// SPDX-License-Identifier: Apache-2.0
#pragma once
#include <string>
#include <string_view>
2017-03-29 06:33:38 +00:00
#include <vector>
namespace ccls {
2018-08-09 17:08:14 +00:00
std::string NormalizePath(const std::string &path);
2017-08-17 18:02:47 +00:00
// Free any unused memory and return it to the system.
void FreeUnusedMemory();
// Stop self and wait for SIGCONT.
void TraceMe();
2018-08-09 17:08:14 +00:00
std::string GetExternalCommandOutput(const std::vector<std::string> &command,
std::string_view input);
void SpawnThread(void *(*fn)(void *), void *arg);
} // namespace ccls