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