blob: 2c7e9081d6090af828c352ecda9f379939e902b9 [file] [log] [blame]
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/process/process_handle.h"
#include <unistd.h>
#include "starboard/types.h"
namespace base {
ProcessId GetCurrentProcId() {
return getpid();
}
ProcessHandle GetCurrentProcessHandle() {
return GetCurrentProcId();
}
ProcessId GetProcId(ProcessHandle process) {
return process;
}
} // namespace base