Changeset 973ef9fc in mainline for uspace/drv/test1/test1.h
- Timestamp:
- 2010-12-25T21:20:28Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 631ee0c
- Parents:
- 1bfd3d3 (diff), 09178b7f (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/drv/test1/test1.h
r1bfd3d3 r973ef9fc 1 1 /* 2 * Copyright (c) 20 06 Jakub Jermar2 * Copyright (c) 2010 Vojtech Horky 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup generic 30 * @{ 29 /** @file 31 30 */ 31 #ifndef DRV_TEST1_TEST1_H_ 32 #define DRV_TEST1_TEST1_H_ 32 33 33 /** 34 * @file 35 * @brief Wrapper for explicit 64-bit arguments passed to syscalls. 36 */ 34 #include <driver.h> 37 35 38 #ifndef KERN_SYSARG64_H_ 39 #define KERN_SYSARG64_H_ 36 #define NAME "test1" 40 37 41 typedef struct { 42 unsigned long long value; 43 } sysarg64_t; 38 extern device_ops_t char_device_ops; 44 39 45 40 #endif 46 47 /** @}48 */
Note:
See TracChangeset
for help on using the changeset viewer.