Changeset 26e7d6d in mainline for abi/include/mm/as.h
- Timestamp:
- 2011-09-19T16:31:00Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a347a11
- Parents:
- 3842a955 (diff), 086290d (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
-
abi/include/mm/as.h (moved) (moved from uspace/srv/hid/console/gcons.h ) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
abi/include/mm/as.h
r3842a955 r26e7d6d 1 1 /* 2 * Copyright (c) 20 06 Ondrej Palkovsky2 * Copyright (c) 2010 Jakub Jermar 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup console29 /** @addtogroup genericmm 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef GCONS_H_36 #define GCONS_H_35 #ifndef ABI_AS_H_ 36 #define ABI_AS_H_ 37 37 38 #include <sys/types.h> 38 /** Address space area flags. */ 39 #define AS_AREA_READ 1 40 #define AS_AREA_WRITE 2 41 #define AS_AREA_EXEC 4 42 #define AS_AREA_CACHEABLE 8 39 43 40 void gcons_init(int); 41 42 void gcons_redraw_console(void); 43 void gcons_change_console(size_t); 44 void gcons_notify_char(size_t); 45 void gcons_in_kernel(void); 46 47 void gcons_notify_connect(size_t); 48 void gcons_notify_disconnect(size_t); 49 50 void gcons_mouse_move(ssize_t, ssize_t); 51 int gcons_mouse_btn(bool state); 44 /** Address space area info exported to uspace. */ 45 typedef struct { 46 /** Starting address */ 47 uintptr_t start_addr; 48 49 /** Area size */ 50 size_t size; 51 52 /** Area flags */ 53 unsigned int flags; 54 } as_area_info_t; 52 55 53 56 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
