Changeset 241f1985 in mainline for uspace/srv/devman
- Timestamp:
- 2019-08-31T10:45:17Z (6 years ago)
- Children:
- 102f641
- Parents:
- f92b315
- git-author:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-23 22:04:34)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-31 10:45:17)
- Location:
- uspace/srv/devman
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/Makefile
rf92b315 r241f1985 29 29 30 30 USPACE_PREFIX = ../.. 31 LIBS = $(LIBSYSMAN_PREFIX)/libsysman.a 32 EXTRA_CFLAGS += -I$(LIBSYSMAN_PREFIX)/include 31 LIBS = sysman 33 32 BINARY = devman 34 33 STATIC_NEEDED = y -
uspace/srv/devman/driver.c
rf92b315 r241f1985 34 34 #include <dirent.h> 35 35 #include <errno.h> 36 #include <fcntl.h>37 36 #include <io/log.h> 38 37 #include <vfs/vfs.h> 38 #include <dirent.h> 39 39 #include <loc.h> 40 40 #include <stdio.h> 41 41 #include <str_error.h> 42 #include <sys/stat.h>43 42 #include <sysman/ctl.h> 44 43 #include <task.h> -
uspace/srv/devman/drv_conn.c
rf92b315 r241f1985 41 41 #include <io/log.h> 42 42 #include <ipc/devman.h> 43 #include <ipc/driver.h>44 43 #include <ipc/services.h> 45 44 #include <loc.h> … … 111 110 if (rc != EOK) { 112 111 fibril_mutex_unlock(&driver->driver_mutex); 113 async_answer_0(call id, rc);112 async_answer_0(call, rc); 114 113 return NULL; 115 114 } 116 sysman_main_exposee_added(unit_name, call-> in_task_id);115 sysman_main_exposee_added(unit_name, call->task_id); 117 116 free(unit_name); 118 117
Note:
See TracChangeset
for help on using the changeset viewer.
