Changeset 3529f148 in mainline for uspace/srv/sysman/units/unit_mnt.c
- Timestamp:
- 2020-03-06T19:14:20Z (5 years ago)
- Children:
- 13b4504
- Parents:
- 06599a1
- git-author:
- Matthieu Riolo <matthieu.riolo@…> (2020-02-29 11:22:13)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2020-03-06 19:14:20)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/sysman/units/unit_mnt.c
r06599a1 r3529f148 54 54 char *device; 55 55 char *options; 56 unsigned int flags;56 ipc_start_flag_t flags; 57 57 unsigned int instance; 58 58 … … 208 208 */ 209 209 210 mnt_data.flags |= u_mnt->blocking ? IPC_FLAG_BLOCKING: 0;211 mnt_data.flags |= u_mnt->autostart ? IPC_AUTOSTART: 0;210 mnt_data.flags |= u_mnt->blocking ? true : 0; 211 mnt_data.flags |= u_mnt->autostart ? true : 0; 212 212 mnt_data.unit = unit; 213 213
Note:
See TracChangeset
for help on using the changeset viewer.