Changes in / [9f9450b:9ed3e1a] in mainline
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/include/arch/mm/page_armv4.h
r9f9450b r9ed3e1a 48 48 (((pte_t *) (pte))->l0.descriptor_type != 0) 49 49 #define PTE_GET_FRAME_ARCH(pte) \ 50 ((( pte_t *) (pte))->l1.frame_base_addr<< FRAME_WIDTH)50 (((uintptr_t) ((pte_t *) (pte))->l1.frame_base_addr) << FRAME_WIDTH) 51 51 #define PTE_WRITABLE_ARCH(pte) \ 52 52 (((pte_t *) (pte))->l1.access_permission_0 == PTE_AP_USER_RW_KERNEL_RW) -
kernel/arch/arm32/include/arch/mm/page_armv6.h
r9f9450b r9ed3e1a 48 48 (((pte_t *) (pte))->l0.descriptor_type != 0) 49 49 #define PTE_GET_FRAME_ARCH(pte) \ 50 ((( pte_t *) (pte))->l1.frame_base_addr<< FRAME_WIDTH)50 (((uintptr_t) ((pte_t *) (pte))->l1.frame_base_addr) << FRAME_WIDTH) 51 51 #define PTE_WRITABLE_ARCH(pte) \ 52 52 (((pte_t *) (pte))->l1.access_permission_1 != PTE_AP1_RO) -
uspace/lib/c/generic/rtld/module.c
r9f9450b r9ed3e1a 93 93 module_t *module_find(const char *name) 94 94 { 95 module_t *m;96 95 const char *p, *soname; 97 96 … … 107 106 108 107 /* Traverse list of all modules. Not extremely fast, but simple */ 109 list_foreach(runtime_env->modules, cur) { 110 DPRINTF("cur = %p\n", cur); 111 m = list_get_instance(cur, module_t, modules_link); 108 list_foreach(runtime_env->modules, modules_link, module_t, m) { 109 DPRINTF("m = %p\n", m); 112 110 if (str_cmp(m->dyn.soname, soname) == 0) { 113 111 return m; /* Found */ … … 245 243 void modules_process_relocs(module_t *start) 246 244 { 247 module_t *m; 248 249 list_foreach(runtime_env->modules, cur) { 250 m = list_get_instance(cur, module_t, modules_link); 251 245 list_foreach(runtime_env->modules, modules_link, module_t, m) { 252 246 /* Skip rtld, since it has already been processed */ 253 247 if (m != &runtime_env->rtld) { … … 261 255 void modules_untag(void) 262 256 { 263 module_t *m; 264 265 list_foreach(runtime_env->modules, cur) { 266 m = list_get_instance(cur, module_t, modules_link); 257 list_foreach(runtime_env->modules, modules_link, module_t, m) { 267 258 m->bfs_tag = false; 268 259 } -
uspace/lib/c/generic/vfs/vfs.c
r9f9450b r9ed3e1a 742 742 } 743 743 744 int remove(const char *path) 745 { 746 return unlink(path); 747 } 748 744 749 int chdir(const char *path) 745 750 { -
uspace/lib/c/include/stdio.h
r9f9450b r9ed3e1a 151 151 /* Misc file functions */ 152 152 extern int rename(const char *, const char *); 153 extern int remove(const char *); 153 154 154 155 #endif -
uspace/lib/gui/window.c
r9f9450b r9ed3e1a 529 529 } 530 530 531 window_t *window_open(c har *winreg, bool is_main, bool is_decorated,531 window_t *window_open(const char *winreg, bool is_main, bool is_decorated, 532 532 const char *caption, sysarg_t x_offset, sysarg_t y_offset) 533 533 { -
uspace/lib/gui/window.h
r9f9450b r9ed3e1a 66 66 * If the window is declared as main, its closure causes termination of the 67 67 * whole application. Note that opened window does not have any surface yet. */ 68 extern window_t *window_open(char *, bool, bool, const char *, sysarg_t, sysarg_t); 68 extern window_t *window_open(const char *, bool, bool, const char *, sysarg_t, 69 sysarg_t); 69 70 70 71 /** -
uspace/srv/fs/ext4fs/Makefile
r9f9450b r9ed3e1a 31 31 EXTRA_CFLAGS += -I$(LIBBLOCK_PREFIX) -I$(LIBFS_PREFIX) -I$(LIBEXT4_PREFIX) 32 32 BINARY = ext4fs 33 STATIC_NEEDED = y 33 34 34 35 SOURCES = \ -
uspace/srv/fs/locfs/Makefile
r9f9450b r9ed3e1a 32 32 EXTRA_CFLAGS += -I$(LIBFS_PREFIX) 33 33 BINARY = locfs 34 STATIC_NEEDED = y35 34 36 35 SOURCES = \
Note:
See TracChangeset
for help on using the changeset viewer.