crashpad/util/mach/scoped_task_suspend.cc
Avi Drissman 6a9e2e6003 Adjust to movement of base/ files to base/apple
This CL rolls mini_chromium to pick up the move of a bunch of files
to base/apple, and makes changes to adjust.

Bug: chromium:1444927
Change-Id: Ib692e2a1628e2c0c8228795eaecdb7f35b1c09fa
Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/4786387
Reviewed-by: Mark Mentovai <mark@chromium.org>
Commit-Queue: Avi Drissman <avi@chromium.org>
2023-08-16 21:05:16 +00:00

41 lines
1.2 KiB
C++

// Copyright 2014 The Crashpad 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.
#include "util/mach/scoped_task_suspend.h"
#include "base/apple/mach_logging.h"
#include "base/check_op.h"
#include "base/logging.h"
namespace crashpad {
ScopedTaskSuspend::ScopedTaskSuspend(task_t task) : task_(task) {
DCHECK_NE(task_, mach_task_self());
kern_return_t kr = task_suspend(task_);
if (kr != KERN_SUCCESS) {
task_ = TASK_NULL;
MACH_LOG(ERROR, kr) << "task_suspend";
}
}
ScopedTaskSuspend::~ScopedTaskSuspend() {
if (task_ != TASK_NULL) {
kern_return_t kr = task_resume(task_);
MACH_LOG_IF(ERROR, kr != KERN_SUCCESS, kr) << "task_resume";
}
}
} // namespace crashpad