Changeset f15cb3c4 in mainline
- Timestamp:
- 2008-12-04T19:14:29Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0258e67
- Parents:
- 405e13a
- Location:
- uspace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/libc.h
r405e13a rf15cb3c4 40 40 #include <libarch/syscall.h> 41 41 42 #define __SYSCALL0(id) __syscall0(0, 0, 0, 0, 0, 0, id) 43 #define __SYSCALL1(id, p1) __syscall1(p1, 0, 0, 0, 0, 0, id) 44 #define __SYSCALL2(id, p1, p2) __syscall2(p1, p2, 0, 0, 0, 0, id) 45 #define __SYSCALL3(id, p1, p2, p3) __syscall3(p1, p2, p3, 0, 0, 0, id) 46 #define __SYSCALL4(id, p1, p2, p3, p4) __syscall4(p1, p2, p3, p4, 0, 0, id) 47 #define __SYSCALL5(id, p1, p2, p3, p4, p5) __syscall5(p1, p2, p3, p4, p5, 0, id) 42 #define __SYSCALL0(id) \ 43 __syscall0(0, 0, 0, 0, 0, 0, id) 44 #define __SYSCALL1(id, p1) \ 45 __syscall1(p1, 0, 0, 0, 0, 0, id) 46 #define __SYSCALL2(id, p1, p2) \ 47 __syscall2(p1, p2, 0, 0, 0, 0, id) 48 #define __SYSCALL3(id, p1, p2, p3) \ 49 __syscall3(p1, p2, p3, 0, 0, 0, id) 50 #define __SYSCALL4(id, p1, p2, p3, p4) \ 51 __syscall4(p1, p2, p3, p4, 0, 0, id) 52 #define __SYSCALL5(id, p1, p2, p3, p4, p5) \ 53 __syscall5(p1, p2, p3, p4, p5, 0, id) 48 54 #define __SYSCALL6(id, p1, p2, p3, p4, p5, p6) \ 49 55 __syscall6(p1, p2, p3, p4, p5, p6, id) -
uspace/srv/console/gcons.c
r405e13a rf15cb3c4 251 251 void gcons_mouse_move(int dx, int dy) 252 252 { 253 mouse_x = limit(mouse_x +dx, 0, xres);254 mouse_y = limit(mouse_y +dy, 0, yres);253 mouse_x = limit(mouse_x + dx, 0, xres); 254 mouse_y = limit(mouse_y + dy, 0, yres); 255 255 256 256 async_msg_2(fbphone, FB_POINTER_MOVE, mouse_x, mouse_y); … … 259 259 static int gcons_find_conbut(int x, int y) 260 260 { 261 int status_start = STATUS_START + (xres - 800) / 2; ;261 int status_start = STATUS_START + (xres - 800) / 2; 262 262 263 263 if (y < STATUS_TOP || y >= STATUS_TOP + STATUS_HEIGHT) … … 269 269 if (x >= status_start + (STATUS_WIDTH + STATUS_SPACE) * CONSOLE_COUNT) 270 270 return -1; 271 if (((x - status_start) % (STATUS_WIDTH +STATUS_SPACE)) < STATUS_SPACE)272 return -1; 273 274 return (x - status_start) / (STATUS_WIDTH +STATUS_SPACE);271 if (((x - status_start) % (STATUS_WIDTH + STATUS_SPACE)) < STATUS_SPACE) 272 return -1; 273 274 return (x - status_start) / (STATUS_WIDTH + STATUS_SPACE); 275 275 } 276 276
Note:
See TracChangeset
for help on using the changeset viewer.