Changeset a2f95ce in mainline for uspace/app/sysinst/sysinst.h
- Timestamp:
- 2026-04-11T12:47:58Z (4 days ago)
- Branches:
- master
- Children:
- 922427a8, aa4f80c
- Parents:
- 6d06bbc
- File:
-
- 1 edited
-
uspace/app/sysinst/sysinst.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sysinst/sysinst.h
r6d06bbc ra2f95ce 37 37 #define SYSINST_H 38 38 39 #include <fibril_synch.h> 39 40 #include <futil.h> 40 41 #include <gfx/color.h> 41 42 #include <loc.h> 43 #include <stdbool.h> 42 44 #include <system.h> 43 45 #include <ui/fixed.h> … … 74 76 sysinst_oper_t oper; 75 77 futil_t *futil; 78 /** @c true after user responds to interactive query. */ 79 bool responded; 80 /** Signalled when @c responded changes */ 81 fibril_condvar_t responded_cv; 82 /** Synchronize access to @c responded */ 83 fibril_mutex_t responded_lock; 84 /** User decided to quit installation. */ 85 bool quit; 76 86 char errmsg[128]; 77 87 } sysinst_t;
Note:
See TracChangeset
for help on using the changeset viewer.
