// Copyright © 2014 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp
{
///
/// Process termination status values.
///
public enum CefTerminationStatus
{
///
/// Non-zero exit status.
///
AbnormalTermination = 0,
///
/// SIGKILL or task manager kill.
///
ProcessWasKilled,
///
/// Segmentation fault.
///
ProcessCrashed,
///
/// Out of memory. Some platforms may use ProcessCrashed instead.
///
OutOfMemory
}
}