Changeset e40ec257 in mainline
- Timestamp:
- 2009-04-16T11:39:05Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3c0a841
- Parents:
- c33e36b
- Location:
- uspace/lib/libc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/console.c
rc33e36b re40ec257 239 239 } 240 240 241 void console_flush_optional(void) 242 { 243 if (console_phone >= 0) 244 console_flush(); 245 } 246 241 247 int console_get_size(int *rows, int *cols) 242 248 { -
uspace/lib/libc/generic/libc.c
rc33e36b re40ec257 49 49 #include <async.h> 50 50 #include <as.h> 51 #include <console.h> 51 52 #include <loader/pcb.h> 52 53 … … 84 85 85 86 main(argc, argv); 87 console_flush_optional(); 86 88 } 87 89 -
uspace/lib/libc/include/console.h
rc33e36b re40ec257 53 53 extern void console_putstr(const char *s); 54 54 extern void console_flush(void); 55 extern void console_flush_optional(void); 55 56 56 57 extern int console_get_size(int *, int *);
Note:
See TracChangeset
for help on using the changeset viewer.