sapling/eden/fs/utils/WinStackTrace.h
Zeyi (Rice) Fan 287a9ff724 utils: add stack trace for Windows
Summary:
Copy from Watchman.

This allows us to show stack trace when EdenFS terminates on Windows.

Reviewed By: chadaustin

Differential Revision: D27896966

fbshipit-source-id: f3238a37a1176f879d5e6bc051ec97031c9a7096
2021-04-23 13:20:46 -07:00

15 lines
309 B
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#pragma once
#ifdef _WIN32
namespace facebook::eden {
void installWindowsExceptionFilter();
} // namespace facebook::eden
#endif