Changeset a2f95ce in mainline for uspace/app/sysinst/sysinst.h


Ignore:
Timestamp:
2026-04-11T12:47:58Z (4 days ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master
Children:
922427a8, aa4f80c
Parents:
6d06bbc
Message:

Ask user to confirm upgrade if existing installation found.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sysinst/sysinst.h

    r6d06bbc ra2f95ce  
    3737#define SYSINST_H
    3838
     39#include <fibril_synch.h>
    3940#include <futil.h>
    4041#include <gfx/color.h>
    4142#include <loc.h>
     43#include <stdbool.h>
    4244#include <system.h>
    4345#include <ui/fixed.h>
     
    7476        sysinst_oper_t oper;
    7577        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;
    7686        char errmsg[128];
    7787} sysinst_t;
Note: See TracChangeset for help on using the changeset viewer.