Changeset 22d990c in mainline for uspace/srv
- Timestamp:
- 2020-01-11T00:36:26Z (6 years ago)
- Children:
- 06599a1
- Parents:
- 8a74512
- Location:
- uspace/srv
- Files:
-
- 12 edited
-
devman/driver.c (modified) (1 diff)
-
devman/drv_conn.c (modified) (1 diff)
-
hid/compositor/compositor.c (modified) (1 diff)
-
loader/main.c (modified) (2 diffs)
-
locsrv/locsrv.c (modified) (1 diff)
-
logger/main.c (modified) (1 diff)
-
ns/ns.c (modified) (1 diff)
-
taskman/task.h (modified) (1 diff)
-
vfs/Makefile (modified) (1 diff)
-
vfs/vfs.c (modified) (2 diffs)
-
vfs/vfs.h (modified) (1 diff)
-
vfs/vfs_register.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/driver.c
r8a74512 r22d990c 36 36 #include <io/log.h> 37 37 #include <vfs/vfs.h> 38 #include <dirent.h>39 38 #include <loc.h> 39 #include <str_error.h> 40 40 #include <stdio.h> 41 #include <str_error.h>42 41 #include <sysman/ctl.h> 43 42 #include <task.h> -
uspace/srv/devman/drv_conn.c
r8a74512 r22d990c 36 36 37 37 #include <assert.h> 38 #include <ipc/services.h> 39 #include <ns.h> 38 40 #include <async.h> 41 #include <stdio.h> 39 42 #include <errno.h> 43 #include <str_error.h> 44 #include <stdbool.h> 40 45 #include <fibril_synch.h> 46 #include <stdlib.h> 47 #include <str.h> 41 48 #include <io/log.h> 42 49 #include <ipc/devman.h> 43 #include <ipc/services.h>44 50 #include <loc.h> 45 #include <ns.h>46 #include <stdbool.h>47 #include <stdio.h>48 #include <stdlib.h>49 #include <str.h>50 #include <str_error.h>51 51 #include <sysman/broker.h> 52 52 -
uspace/srv/hid/compositor/compositor.c
r8a74512 r22d990c 2267 2267 if (!list_empty(&viewport_list)) 2268 2268 input_activate(input); 2269 2269 2270 ret: 2270 2271 fibril_mutex_unlock(&discovery_mtx); -
uspace/srv/loader/main.c
r8a74512 r22d990c 39 39 * loader. 40 40 * 41 * The apparent caller uses his phone to send the pathname and various other41 * The apparent caller uses its phone to send the pathname and various other 42 42 * information to the loader. This is normally done by the C library 43 43 * and completely hidden from applications. … … 49 49 #include <stddef.h> 50 50 #include <ipc/services.h> 51 #include <ipc/loader.h> 52 #include <ns.h> 53 #include <loader/pcb.h> 54 #include <entry_point.h> 55 #include <errno.h> 56 #include <async.h> 57 #include <str.h> 51 58 #include <as.h> 52 #include <async.h>53 59 #include <elf/elf.h> 54 60 #include <elf/elf_load.h> 55 #include <entry_point.h>56 #include <errno.h>57 61 #include <fibril_synch.h> 58 #include <ipc/loader.h>59 #include <loader/pcb.h>60 #include <ns.h>61 #include <str.h>62 62 #include <task.h> 63 63 #include <taskman.h> -
uspace/srv/locsrv/locsrv.c
r8a74512 r22d990c 36 36 */ 37 37 38 #include <assert.h> 38 #include <ipc/services.h> 39 #include <ns.h> 39 40 #include <async.h> 41 #include <stdio.h> 40 42 #include <errno.h> 41 #include <ipc/loc.h> 42 #include <ipc/services.h> 43 #include <stdbool.h> 43 44 #include <fibril_synch.h> 44 45 #include <macros.h> 45 #include <ns.h>46 #include <stdbool.h>47 #include <stdio.h>48 46 #include <stdlib.h> 49 47 #include <str.h> 50 48 #include <str_error.h> 49 #include <ipc/loc.h> 50 #include <assert.h> 51 51 #include <sysman/broker.h> 52 52 #include <sysman/ctl.h> -
uspace/srv/logger/main.c
r8a74512 r22d990c 83 83 84 84 printf("%s: Accepting connections\n", NAME); 85 86 85 task_retval(EOK); 87 86 async_manager(); -
uspace/srv/ns/ns.c
r8a74512 r22d990c 132 132 return rc; 133 133 } 134 134 135 task_retval(0); 135 136 136 printf("%s: Accepting connections\n", NAME); 137 138 137 async_manager(); 139 138 -
uspace/srv/taskman/task.h
r8a74512 r22d990c 69 69 /* Link to listeners list. */ 70 70 link_t listeners; 71 /* Session for notifications to task. */71 /* Session for sending event notifications to registrar. */ 72 72 async_sess_t *sess; 73 73 } task_t; -
uspace/srv/vfs/Makefile
r8a74512 r22d990c 30 30 USPACE_PREFIX = ../.. 31 31 LIBS = sysman 32 EXTRA_CFLAGS += -I$(USPACE_PREFIX)/lib/sysman/include33 32 BINARY = vfs 34 33 STATIC_NEEDED = y -
uspace/srv/vfs/vfs.c
r8a74512 r22d990c 41 41 #include <abi/ipc/methods.h> 42 42 #include <ns.h> 43 #include <as.h>44 43 #include <async.h> 45 44 #include <stdatomic.h> … … 48 47 #include <stdio.h> 49 48 #include <ipc/services.h> 50 #include <macros.h>51 49 #include <stdbool.h> 52 50 #include <stdio.h> 53 51 #include <str.h> 52 #include <as.h> 53 #include <macros.h> 54 54 #include <sysman/broker.h> 55 55 56 #include "vfs.h" 56 57 -
uspace/srv/vfs/vfs.h
r8a74512 r22d990c 178 178 extern fs_handle_t fs_name_to_handle(const char *, unsigned int instance, bool); 179 179 extern vfs_info_t *fs_handle_to_info(fs_handle_t); 180 extern int vfs_get_fstypes(vfs_fstypes_t *);180 extern errno_t vfs_get_fstypes(vfs_fstypes_t *); 181 181 extern errno_t fs_unit_name(const char *, unsigned int, char **); 182 182 -
uspace/srv/vfs/vfs_register.c
r8a74512 r22d990c 36 36 */ 37 37 38 #include <ipc/services.h> 39 #include <async.h> 40 #include <fibril.h> 41 #include <fibril_synch.h> 42 #include <errno.h> 43 #include <stdio.h> 44 #include <stdlib.h> 45 #include <str.h> 46 #include <ctype.h> 47 #include <stdbool.h> 38 48 #include <adt/list.h> 39 49 #include <as.h> 40 50 #include <assert.h> 41 #include <async.h>42 51 #include <stdatomic.h> 43 #include <ctype.h>44 #include <errno.h>45 #include <fibril.h>46 #include <fibril_synch.h>47 #include <ipc/services.h>48 #include <stdbool.h>49 #include <stdio.h>50 #include <stdlib.h>51 #include <str.h>52 52 #include <sysman/broker.h> 53 53 #include "vfs.h"
Note:
See TracChangeset
for help on using the changeset viewer.
