- Timestamp:
- 2010-01-29T17:15:32Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b86d436
- Parents:
- 86018c1
- Location:
- uspace
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/init/init.c
r86018c1 r8e33e1d 263 263 } 264 264 265 //spawn("/srv/fhc");266 //spawn("/srv/obio");267 //srv_start("/srv/i8042");268 //srv_start("/srv/c_mouse");265 spawn("/srv/fhc"); 266 spawn("/srv/obio"); 267 srv_start("/srv/i8042"); 268 srv_start("/srv/c_mouse"); 269 269 270 270 spawn("/srv/fb"); -
uspace/lib/libc/arch/sparc64/src/thread_entry.s
r86018c1 r8e33e1d 39 39 # 40 40 41 # MH42 41 #save %sp, -176, %sp 43 42 #flushw -
uspace/lib/libc/generic/thread.c
r86018c1 r8e33e1d 41 41 #include <string.h> 42 42 #include <async.h> 43 #include <stdio.h>44 43 45 44 #ifndef THREAD_INITIAL_STACK_PAGES_NO … … 63 62 __tcb_set(f->tcb); 64 63 65 // MH66 printf("uarg: %lx\n", uarg);67 64 uarg->uspace_thread_function(uarg->uspace_thread_arg); 68 65 /* XXX: we cannot free the userspace stack while running on it */ -
uspace/srv/hid/kbd/generic/kbd.c
r86018c1 r8e33e1d 219 219 cir_service = SERVICE_OBIO; 220 220 221 /*222 221 if (cir_service) { 223 222 while (cir_phone < 0) { … … 226 225 } 227 226 } 228 */229 printf("KBD driver!!!\n");230 227 231 228 /* Initialize port driver. */ -
uspace/srv/hid/kbd/port/niagara.c
r86018c1 r8e33e1d 67 67 *input_buffer_t; 68 68 69 /* virtual address of the shared buffer */ 69 70 input_buffer_t input_buffer; 70 71 … … 73 74 74 75 /** 75 * Initializes the SGCNdriver.76 * Maps the physical memory (SRAM)and creates the polling thread.76 * Initializes the Niagara driver. 77 * Maps the shared buffer and creates the polling thread. 77 78 */ 78 79 int kbd_port_init(void) … … 117 118 118 119 /** 119 * Handler of the "key pressed" event. Reads codes of all the pressed keys from120 * the buffer.120 * Called regularly by the polling thread. Reads codes of all the 121 * pressed keys from the buffer. 121 122 */ 122 123 static void niagara_key_pressed(void)
Note:
See TracChangeset
for help on using the changeset viewer.