The Pedigree Project
0.1
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
src
modules
subsys
native
include
pedigree
native
native-protocol.h
1
/*
2
* Copyright (c) 2008-2014, Pedigree Developers
3
*
4
* Please see the CONTRIB file in the root of the source tree for a full
5
* list of contributors.
6
*
7
* Permission to use, copy, modify, and distribute this software for any
8
* purpose with or without fee is hereby granted, provided that the above
9
* copyright notice and this permission notice appear in all copies.
10
*
11
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18
*/
19
20
#ifndef _PEDIGREE_NATIVE_PROTOCOL_H
21
#define _PEDIGREE_NATIVE_PROTOCOL_H
22
23
#include "pedigree/native/Object.h"
24
25
// Values for the 'meta' field in ReturnState.
26
#define META_ERROR_MASK 0xFFFF
27
#define META_ERROR_BADOBJECT 0x0001
28
29
struct
ReturnState
30
{
32
bool
success
;
37
uint64_t
value
;
42
uint64_t
meta
;
43
};
44
53
int
_syscall(
Object
*pObject,
size_t
nOp);
54
60
void
register_object(
Object
*pObject);
61
67
void
unregister_object(
Object
*pObject);
68
77
ReturnState
78
native_call(
Object
*pObject, uint64_t subid,
void
*params,
size_t
params_size);
79
80
#endif
Object
Definition:
Object.h:26
ReturnState::value
uint64_t value
Definition:
native-protocol.h:37
ReturnState::success
bool success
Definition:
native-protocol.h:32
ReturnState::meta
uint64_t meta
Definition:
native-protocol.h:42
ReturnState
Definition:
native-protocol.h:29
Generated on Fri Jan 24 2020 06:46:14 for The Pedigree Project by
1.8.11