Changeset 8e7c9fe in mainline for uspace/lib/c/include/ipc/chardev.h
- Timestamp:
- 2014-09-12T03:45:25Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c53b58e
- Parents:
- 3eb0c85 (diff), 105d8d6 (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
-
uspace/lib/c/include/ipc/chardev.h
r3eb0c85 r8e7c9fe 1 1 /* 2 * Copyright (c) 20 03-2004 Jakub Jermar2 * Copyright (c) 2014 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup mips6429 /** @addtogroup libcipc 30 30 * @{ 31 31 */ 32 32 /** @file 33 * @brief Character device interface. 33 34 */ 34 35 35 #ifndef KERN_mips64_CPU_H_36 #define KERN_mips64_CPU_H_36 #ifndef LIBC_IPC_CHARDEV_H_ 37 #define LIBC_IPC_CHARDEV_H_ 37 38 38 #include <typedefs.h> 39 #include <arch/asm.h> 39 #include <ipc/common.h> 40 40 41 typedef struct{42 uint32_t imp_num;43 uint32_t rev_num;44 } c pu_arch_t;41 typedef enum { 42 CHARDEV_READ = IPC_FIRST_USER_METHOD, 43 CHARDEV_WRITE 44 } chardev_request_t; 45 45 46 46 #endif
Note:
See TracChangeset
for help on using the changeset viewer.