Changeset 0d00e53 in mainline for uspace/app
- Timestamp:
- 2024-11-07T10:38:29Z (14 months ago)
- 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)
- Location:
- uspace/app
- Files:
-
- 4 added
- 3 edited
-
hello/hello.h (modified) (2 diffs)
-
meson.build (modified) (1 diff)
-
shutdown-dlg/doc/doxygroups.h (added)
-
shutdown-dlg/meson.build (added)
-
shutdown-dlg/shutdown-dlg.c (added)
-
shutdown-dlg/shutdown-dlg.h (added)
-
shutdown/shutdown.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/hello/hello.h
rad9e225 r0d00e53 1 1 /* 2 * Copyright (c) 202 0Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 37 37 #define HELLO_H 38 38 39 #include <display.h>40 39 #include <ui/fixed.h> 41 40 #include <ui/label.h> -
uspace/app/meson.build
rad9e225 r0d00e53 78 78 'sbi', 79 79 'shutdown', 80 'shutdown-dlg', 80 81 'sportdmp', 81 82 'stats', -
uspace/app/shutdown/shutdown.c
rad9e225 r0d00e53 105 105 } 106 106 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:"); 108 109 if (rc != EOK) { 109 110 printf(NAME ": Out of memory.\n"); … … 194 195 195 196 fibril_mutex_lock(&shutdown.lock); 196 printf(" System is shutting down...\n");197 printf("The system is shutting down...\n"); 197 198 while (!shutdown.stopped) 198 199 fibril_condvar_wait(&shutdown.cv, &shutdown.lock);
Note:
See TracChangeset
for help on using the changeset viewer.
