Changeset d3e6935 in mainline
- Timestamp:
- 2008-12-26T19:37:21Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b755225
- Parents:
- 713e6f2d
- Location:
- uspace
- Files:
-
- 1 added
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/console/console1.c
r713e6f2d rd3e6935 33 33 #include "../tester.h" 34 34 35 #include "../../../srv/console/console.h"35 #include <ipc/console.h> 36 36 37 37 static void set_style(int fgcolor, int bgcolor) -
uspace/app/tetris/input.c
r713e6f2d rd3e6935 58 58 59 59 #include <async.h> 60 #include "../../srv/console/console.h"60 #include <ipc/console.h> 61 61 62 62 /* return true iff the given timeval is positive */ -
uspace/app/tetris/screen.c
r713e6f2d rd3e6935 57 57 #include "screen.h" 58 58 #include "tetris.h" 59 #include "../../srv/console/console.h"59 #include <ipc/console.h> 60 60 61 61 static cell curscreen[B_SIZE]; /* 1 => standout (or otherwise marked) */ -
uspace/app/trace/trace.c
r713e6f2d rd3e6935 50 50 #include <ipc/services.h> 51 51 #include "../../srv/vfs/vfs.h" 52 #include "../../srv/console/console.h"52 #include <ipc/console.h> 53 53 54 54 #include "syscalls.h" -
uspace/lib/libc/Makefile
r713e6f2d rd3e6935 34 34 LIBC_PREFIX = $(shell pwd) 35 35 SOFTINT_PREFIX = ../softint 36 CONSOLE_PREFIX = ../../srv/console37 36 38 37 ## Setup toolchain … … 40 39 41 40 include $(LIBC_PREFIX)/Makefile.toolchain 42 43 CFLAGS += -I$(CONSOLE_PREFIX)44 41 45 42 ## Sources -
uspace/lib/libc/generic/io/stream.c
r713e6f2d rd3e6935 43 43 #include <ipc/fb.h> 44 44 #include <ipc/services.h> 45 #include < console.h>45 #include <ipc/console.h> 46 46 #include <unistd.h> 47 47 #include <async.h> -
uspace/lib/libc/generic/vfs/vfs.c
r713e6f2d rd3e6935 50 50 #include <string.h> 51 51 #include <ipc/devmap.h> 52 #include "../../ srv/vfs/vfs.h"52 #include "../../../srv/vfs/vfs.h" 53 53 54 54 int vfs_phone = -1; -
uspace/srv/console/console.c
r713e6f2d rd3e6935 42 42 #include <key_buffer.h> 43 43 #include <console.h> 44 #include <ipc/console.h> 44 45 #include <unistd.h> 45 46 #include <async.h> -
uspace/srv/console/console.h
r713e6f2d rd3e6935 40 40 #define CONSOLE_COUNT 12 41 41 42 #define CONSOLE_GETCHAR 102643 #define CONSOLE_PUTCHAR 102744 #define CONSOLE_CLEAR 102845 #define CONSOLE_GOTO 102946 #define CONSOLE_GETSIZE 103047 #define CONSOLE_FLUSH 103148 #define CONSOLE_SET_STYLE 103249 #define CONSOLE_CURSOR_VISIBILITY 103350 51 42 #endif 52 43
Note:
See TracChangeset
for help on using the changeset viewer.