Changeset 03e0a244 in mainline for uspace/srv/hid/remcons/remcons.c
- Timestamp:
- 2012-01-12T12:19:51Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a1347a7
- Parents:
- 178d6a3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/remcons/remcons.c
r178d6a3 r03e0a244 58 58 59 59 #define APP_GETTERM "/app/getterm" 60 60 #define APP_SHELL "/app/bdsh" 61 61 62 62 /** Telnet commands to force character mode … … 225 225 226 226 task_id_t task; 227 rc = task_spawnl(&task, APP_GETTERM, APP_GETTERM, term, "/app/bdsh", NULL);228 if (rc != EOK) { 229 telnet_user_error(user, "Spawning %s %s %sfailed: %s.",230 APP_GETTERM, term, "/app/bdsh", str_error(rc));227 rc = task_spawnl(&task, APP_GETTERM, APP_GETTERM, "-w", term, APP_SHELL, NULL); 228 if (rc != EOK) { 229 telnet_user_error(user, "Spawning `%s -w %s %s' failed: %s.", 230 APP_GETTERM, term, APP_SHELL, str_error(rc)); 231 231 fibril_mutex_lock(&user->guard); 232 232 user->task_finished = true;
Note:
See TracChangeset
for help on using the changeset viewer.