Changeset 0d00e53 in mainline for uspace/app/shutdown/shutdown.c


Ignore:
Timestamp:
2024-11-07T10:38:29Z (9 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master
Children:
9a07ee3, 9e7e1dc
Parents:
ad9e225
git-author:
Jiri Svoboda <jiri@…> (2024-10-06 18:37:25)
git-committer:
Jiri Svoboda <jiri@…> (2024-11-07 10:38:29)
Message:

Shut down dialog

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/shutdown/shutdown.c

    rad9e225 r0d00e53  
    105105        }
    106106
    107         rc = nchoice_set_prompt(nchoice, "Select action");
     107        rc = nchoice_set_prompt(nchoice, "Do you want to shut the system down? "
     108            "Select action:");
    108109        if (rc != EOK) {
    109110                printf(NAME ": Out of memory.\n");
     
    194195
    195196        fibril_mutex_lock(&shutdown.lock);
    196         printf("System is shutting down...\n");
     197        printf("The system is shutting down...\n");
    197198        while (!shutdown.stopped)
    198199                fibril_condvar_wait(&shutdown.cv, &shutdown.lock);
Note: See TracChangeset for help on using the changeset viewer.