Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1648 → Rev 1649

/uspace/trunk/console/console.c
25,6 → 25,14
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @defgroup console Console
* @brief HelenOS console.
* @{
*/
/** @file
*/
 
/* TODO: remove */
#include <stdio.h>
 
507,4 → 515,7
 
return 0;
}
/** @}
*/
 
/uspace/trunk/console/console.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup console
* @{
*/
/** @file
*/
 
#ifndef __CONSOLE_H__
#define __CONSOLE_H__
 
44,3 → 50,7
 
#endif
 
/** @}
*/
 
/uspace/trunk/console/screenbuffer.c
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup console
* @{
*/
/** @file
*/
 
#include <screenbuffer.h>
#include <malloc.h>
#include <unistd.h>
133,3 → 139,7
scr->style.bg_color = bg_color;
}
 
/** @}
*/
 
/uspace/trunk/console/gcons.c
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup console
* @{
*/
/** @file
*/
 
#include <ipc/fb.h>
#include <ipc/ipc.h>
#include <async.h>
422,3 → 428,7
console_state[KERNEL_CONSOLE] = CONS_KERNEL;
gcons_redraw_console();
}
/** @}
*/
 
/uspace/trunk/console/gcons.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup console
* @{
*/
/** @file
*/
 
#ifndef _GCONS_H_
#define _GCONS_H_
 
37,3 → 43,7
void gcons_notify_disconnect(int consnum);
 
#endif
/** @}
*/
 
/uspace/trunk/console/screenbuffer.h
26,6 → 26,12
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup console
* @{
*/
/** @file
*/
 
#ifndef __SCREENBUFFER_H__
#define __SCREENBUFFER_H__
 
57,7 → 63,7
 
/** Returns keyfield for position on screen. Screenbuffer->buffer is cyclic buffer so we must couted in index of the topmost line.
* @param scr screenbuffer
* @oaram x position on screen
* @param x position on screen
* @param y position on screen
* @return keyfield structure with character and its attributes on x,y
*/
88,3 → 94,7
 
#endif
 
/** @}
*/