• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2017 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5module mojo_base.mojom;
6
7struct ProcessId {
8  // This is the storage for the pid, on windows the pid is a DWORD and the
9  // value can be DWORD_MAX which maps gracefully to uint32 while on linux
10  // the pid is a signed int with a max value of 2^22.
11  uint32 pid;
12};
13