Changeset 4339f09 in mainline for uspace/lib
- Timestamp:
- 2013-06-28T07:46:31Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e52b4b5
- Parents:
- 3de67b4c (diff), dba3e2c (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. - Location:
- uspace/lib
- Files:
-
- 1 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/devman.c
r3de67b4c r4339f09 413 413 sysarg_t dretval; 414 414 415 exch = devman_exchange_begin_blocking( LOC_PORT_CONSUMER);415 exch = devman_exchange_begin_blocking(DEVMAN_CLIENT); 416 416 417 417 ipc_call_t answer; -
uspace/lib/c/include/bd_srv.h
r3de67b4c r4339f09 57 57 } bd_srv_t; 58 58 59 typedefstruct bd_ops {59 struct bd_ops { 60 60 int (*open)(bd_srvs_t *, bd_srv_t *); 61 61 int (*close)(bd_srv_t *); … … 65 65 int (*get_block_size)(bd_srv_t *, size_t *); 66 66 int (*get_num_blocks)(bd_srv_t *, aoff64_t *); 67 } bd_ops_t;67 }; 68 68 69 69 extern void bd_srvs_init(bd_srvs_t *); -
uspace/lib/c/include/io/con_srv.h
r3de67b4c r4339f09 66 66 } con_srv_t; 67 67 68 typedefstruct con_ops {68 struct con_ops { 69 69 int (*open)(con_srvs_t *, con_srv_t *); 70 70 int (*close)(con_srv_t *); … … 83 83 void (*set_cursor_visibility)(con_srv_t *, bool); 84 84 int (*get_event)(con_srv_t *, cons_event_t *); 85 } con_ops_t;85 }; 86 86 87 87 extern void con_srvs_init(con_srvs_t *); -
uspace/lib/c/include/mem.h
r3de67b4c r4339f09 37 37 38 38 #include <sys/types.h> 39 #include <cc.h> 39 40 40 41 extern void *memset(void *, int, size_t) 41 __attribute__ ((optimize("-fno-tree-loop-distribute-patterns")));42 ATTRIBUTE_OPTIMIZE("-fno-tree-loop-distribute-patterns"); 42 43 extern void *memcpy(void *, const void *, size_t) 43 __attribute__ ((optimize("-fno-tree-loop-distribute-patterns")));44 ATTRIBUTE_OPTIMIZE("-fno-tree-loop-distribute-patterns"); 44 45 extern void *memmove(void *, const void *, size_t); 45 46 extern int memcmp(const void *, const void *, size_t); -
uspace/lib/draw/drawctx.h
r3de67b4c r4339f09 47 47 #include "font.h" 48 48 49 typedefstruct drawctx {49 struct drawctx { 50 50 link_t link; 51 51 list_t list; … … 62 62 sysarg_t clip_width; 63 63 sysarg_t clip_height; 64 } drawctx_t;64 }; 65 65 66 66 extern void drawctx_init(drawctx_t *, surface_t *); -
uspace/lib/gui/connection.h
r3de67b4c r4339f09 38 38 39 39 #include <sys/types.h> 40 41 struct widget; 42 typedef struct widget widget_t; 40 #include "widget.h" 43 41 44 42 typedef sysarg_t signal_t; -
uspace/lib/gui/widget.h
r3de67b4c r4339f09 51 51 * any derived widget structure. 52 52 */ 53 typedefstruct widget {53 struct widget { 54 54 link_t link; 55 55 widget_t *parent; /**< Parent widget of this widget. NULL for root widget. */ … … 116 116 * also acquire or release mouse grab. */ 117 117 void (*handle_position_event)(widget_t *, pos_event_t); 118 } widget_t;118 }; 119 119 120 120 /* -
uspace/lib/gui/window.h
r3de67b4c r4339f09 47 47 #include "widget.h" 48 48 49 typedefstruct window {49 struct window { 50 50 bool is_main; /**< True for the main window of the application. */ 51 51 bool is_decorated; /**< True if the window decorations should be rendered. */ … … 60 60 fibril_mutex_t guard; /**< Mutex guarding window surface. */ 61 61 surface_t *surface; /**< Window surface shared with compositor. */ 62 } window_t;62 }; 63 63 64 64 /** -
uspace/lib/usbhid/src/hidiface.c
r3de67b4c r4339f09 90 90 return EINVAL; 91 91 92 if ( (buf == NULL))92 if (buf == NULL) 93 93 return ENOMEM; 94 94 … … 184 184 return EINVAL; 185 185 186 if ( (buf == NULL))186 if (buf == NULL) 187 187 return ENOMEM; 188 188
Note:
See TracChangeset
for help on using the changeset viewer.