Changeset 8ff0bd2 in mainline for uspace/lib/c/arch/mips64/include/elf_linux.h
- Timestamp:
- 2011-09-04T11:30:58Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 03bc76a
- Parents:
- d2c67e7 (diff), deac215e (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/arch/mips64/include/elf_linux.h
rd2c67e7 r8ff0bd2 1 1 /* 2 * Copyright (c) 20 09Jiri Svoboda2 * Copyright (c) 2011 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup kbdgen generic 30 * @brief HelenOS generic uspace keyboard handler. 31 * @ingroup kbd 29 /** @addtogroup libcmips64 32 30 * @{ 33 31 */ … … 35 33 */ 36 34 37 #ifndef KBD_LAYOUT_H_38 #define KBD_LAYOUT_H_35 #ifndef LIBC_mips64_ELF_LINUX_H_ 36 #define LBIC_mips64_ELF_LINUX_H_ 39 37 38 #include <libarch/istate.h> 40 39 #include <sys/types.h> 41 #include <io/console.h>42 40 43 41 typedef struct { 44 void (*reset)(void);45 wchar_t (*parse_ev)(kbd_event_t *);46 } layout_op_t;42 /* TODO */ 43 uint64_t pad[16]; 44 } elf_regs_t; 47 45 48 extern layout_op_t us_qwerty_op; 49 extern layout_op_t us_dvorak_op; 50 extern layout_op_t cz_op; 46 static inline void istate_to_elf_regs(istate_t *istate, elf_regs_t *elf_regs) 47 { 48 /* TODO */ 49 (void) istate; (void) elf_regs; 50 } 51 51 52 52 #endif 53 53 54 /** 55 * @} 54 /** @} 56 55 */
Note:
See TracChangeset
for help on using the changeset viewer.