Changeset cf2af94 in mainline for uspace/lib/c/include/ipc/common.h
- Timestamp:
- 2011-02-09T11:46:47Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cb15135a
- Parents:
- a49c4002 (diff), 0b37882 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/lib/c/include/ipc/common.h ¶
ra49c4002 rcf2af94 1 1 /* 2 * Copyright (c) 20 06 Jakub Jermar2 * Copyright (c) 2011 Martin Decky 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup generic29 /** @addtogroup libcipc 30 30 * @{ 31 31 */ 32 33 /** 34 * @file 35 * @brief Wrapper for explicit 64-bit arguments passed to syscalls. 32 /** @file 36 33 */ 37 34 38 #ifndef KERN_SYSARG64_H_ 39 #define KERN_SYSARG64_H_ 35 #ifndef LIBC_IPC_COMMON_H_ 36 #define LIBC_IPC_COMMON_H_ 37 38 #include <sys/types.h> 39 #include <atomic.h> 40 #include <kernel/ipc/ipc.h> 41 42 #define IPC_FLAG_BLOCKING 0x01 40 43 41 44 typedef struct { 42 unsigned long long value; 43 } sysarg64_t; 45 sysarg_t args[IPC_CALL_LEN]; 46 sysarg_t in_task_hash; 47 sysarg_t in_phone_hash; 48 } ipc_call_t; 49 50 typedef sysarg_t ipc_callid_t; 51 52 extern atomic_t async_futex; 44 53 45 54 #endif
Note:
See TracChangeset
for help on using the changeset viewer.