Subversion Repositories HelenOS

Rev

Rev 1849 | Rev 1880 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1849 Rev 1875
Line 91... Line 91...
91
#endif
91
#endif
92
        thread_usleep(KEYBOARD_POLL_PAUSE);
92
        thread_usleep(KEYBOARD_POLL_PAUSE);
93
    }
93
    }
94
}
94
}
95
 
95
 
-
 
96
/** Acquire console back for kernel
-
 
97
 *
-
 
98
 */
-
 
99
void arch_grab_console(void)
-
 
100
{
-
 
101
#ifdef CONFIG_Z8530
-
 
102
    z8530_grab();
-
 
103
#endif
-
 
104
}
-
 
105
 
-
 
106
/** Return console to userspace
-
 
107
 *
-
 
108
 */
-
 
109
void arch_release_console(void)
-
 
110
{
-
 
111
#ifdef CONFIG_Z8530
-
 
112
    z8530_release();
-
 
113
#endif
-
 
114
}
96
/** @}
115
/** @}
97
 */
116
 */