Debugging: Add code to print backtrace for guest on SIGSEGV
[nativeclient.git] / tools / npapi_runtime / npcapability.h
blob81f30fac2d61e7108588e4c8b12d609291ce28d8
1 /*
2 * Copyright 2008, Google Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met:
8 *
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above
12 * copyright notice, this list of conditions and the following disclaimer
13 * in the documentation and/or other materials provided with the
14 * distribution.
15 * * Neither the name of Google Inc. nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 // NaCl-NPAPI Interface
35 #ifndef NATIVE_CLIENT_TOOLS_NPAPI_RUNTIME_NPCAPABILITY_H_
36 #define NATIVE_CLIENT_TOOLS_NPAPI_RUNTIME_NPCAPABILITY_H_
38 #include "native_client/tools/npapi_runtime/nacl_npapi.h"
40 namespace nacl {
42 struct NPCapability {
43 // If an NPCapability represents a NaCl resource handle rather than an
44 // NPObject, the pid field is set to kHandle.
45 static const int kHandle = -1;
47 int pid; // The process ID that has the object.
48 NPObject* object; // The pointer to the object in the owner process.
50 // Copies the specified capability value to this capability.
51 NPCapability& CopyFrom(const NPCapability& capability) {
52 pid = capability.pid;
53 object = capability.object;
54 return *this;
57 // Returns true if this capability represents a NaCl resource handle.
58 bool IsHandle() const {
59 return (pid == kHandle) ? true : false;
63 // Less (<) is required for the std::map template class.
64 inline bool operator<(const NPCapability& c1, const NPCapability& c2) {
65 if (c1.pid < c2.pid) {
66 return true;
68 if (c2.pid < c1.pid) {
69 return false;
71 if (c1.object < c2.object) {
72 return true;
74 return false;
77 inline bool operator==(const NPCapability& c1, const NPCapability& c2) {
78 return (c1.pid == c2.pid && c1.object == c2.object) ? true : false;
81 } // namespace nacl
83 #endif // NATIVE_CLIENT_TOOLS_NPAPI_RUNTIME_NPCAPABILITY_H_