Changeset 23de644 in mainline for uspace/app/sbi/src/os
- Timestamp:
- 2010-04-04T22:31:01Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 074444f, ecb6ac32
- Parents:
- 3aae4e8
- Location:
- uspace/app/sbi/src/os
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/os/helenos.c
r3aae4e8 r23de644 101 101 } 102 102 103 /** Display survival help message. */ 104 void os_input_disp_help(void) 105 { 106 printf("Press Ctrl-Q to quit.\n"); 107 } 108 103 109 /** Read one line of input from the user. */ 104 110 int os_input_line(char **ptr) -
uspace/app/sbi/src/os/os.h
r3aae4e8 r23de644 34 34 char *os_str_dup(const char *str); 35 35 int os_str_get_char(const char *str, int index, int *out_char); 36 void os_input_disp_help(void); 36 37 int os_input_line(char **ptr); 37 38 int os_exec(char *const cmd[]); -
uspace/app/sbi/src/os/posix.c
r3aae4e8 r23de644 95 95 static char os_input_buffer[OS_INPUT_BUFFER_SIZE]; 96 96 97 /** Display survival help message. */ 98 void os_input_disp_help(void) 99 { 100 printf("Send ^C (SIGINT) to quit.\n"); 101 } 102 97 103 /** Read one line of input from the user. */ 98 104 int os_input_line(char **ptr)
Note:
See TracChangeset
for help on using the changeset viewer.
